정규식에서는 숫자나 영문자를 일치시키는 것이 매우 불편합니다. 따라서 정규식에서는 문자 범위를 정의하기 위해 커넥터 "-"를 소개합니다. 다음 글에서는 파이썬에서 정규식의 커넥터를 사용하는 방법에 대한 관련 정보를 주로 소개합니다.
머리말
앞의 예에서는 집합에 있는 문자나 집합에 없는 문자를 사용하는 방법을 배웠습니다. 이때 각 문자를 적어야 하지만 때로는 26개의 소문자를 써야 합니다. 모두 모아서 모아두기 때문에 수집 방법에 따라 26번씩 하나씩 입력해야 하는데 시간이 더 걸리고 오류도 발생하기 쉽습니다. 그렇다면 더 좋은 방법이 없을까요? 이는 정규식 커넥터의 기능을 사용합니다. - 예를 들어 26개의 소문자를 나타내려면 [a-z]를 사용하면 됩니다.
이 기사에서는 Python의 정규식 커넥터 사용에 대한 관련 내용을 자세히 소개하고 참고 및 학습을 위해 공유합니다. 아래에서는 자세히 설명하지 않겠습니다. 자세한 소개를 살펴보겠습니다.
예제는 다음과 같습니다.
#python 3.6 #蔡军生 #http://blog.csdn.net/caimouse/article/details/51749579 # from re_test_patterns import test_patterns test_patterns( 'This is some text -- with punctuation.', [('[a-z]+', 'sequences of lowercase letters'), ('[A-Z]+', 'sequences of uppercase letters'), ('[a-zA-Z]+', 'sequences of letters of either case'), ('[A-Z][a-z]+', 'one uppercase followed by lowercase')], )
결과 출력은 다음과 같습니다.
'[a-z]+' (sequences of lowercase letters) 'This is some text -- with punctuation.' .'his' .....'is' ........'some' .............'text' .....................'with' ..........................'punctuation' '[A-Z]+' (sequences of uppercase letters) 'This is some text -- with punctuation.' 'T' '[a-zA-Z]+' (sequences of letters of either case) 'This is some text -- with punctuation.' 'This' .....'is' ........'some' .............'text' .....................'with' ..........................'punctuation' '[A-Z][a-z]+' (one uppercase followed by lowercase) 'This is some text -- with punctuation.' 'This'
Summary
위 내용은 정규식 연결기를 사용하는 Python 예제 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!