text1 정규표현식 정규표현식 (Regular expressions) 은 특정한 규칙을 가진 문자열의 집합을 표현하는 데 사용하는 형식 언어이다. 복잡한 문자열의 검색과 치환을 위해 사용되며, Python 뿐만 아니라 문자열을 처리하는 모든 곳에서 사용된다. import re sent = 'I can do it' pattern = re.sub('I', 'You', sent) pattern >> 'You can do it' Compile() 찾고자 하는 문자열의 패턴 정의 정의된 패턴과 매칭되는 경우에 대한 처리 pattern = re.compile('the') pattern.findall('of the people, for the people, by the people') >>['the','the','the'] compil.. 2021. 12. 29. 이전 1 다음