다음 코드는 '2018'과 정확히 동일한 숫자의 유효성을 검사합니다.
예시
import re s = '2018' match = re.match(r'\b2018\b',s) print match.group()
출력
이것은 출력을 제공합니다.
2018
예시
다음 코드는 5자리 양의 정수를 확인합니다.
import re s = '2346' match = re.match(r'(?<!-)\b[1-9]\d{4}\b',s) print match s2 = '56789' match = re.match(r'(?<!-)\b[1-9]\d{4}\b',s2) print match.group()
출력
None 56789