Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

숫자의 유효성을 검사하기 위해 Python 정규식을 작성하는 방법은 무엇입니까?


다음 코드는 '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