Python 모듈 re에는 패턴을 검색하고 새 하위 문자열로 바꾸는 데 도움이 되는 re.sub() 메서드가 있습니다. 패턴을 찾지 못하면 문자열을 변경하지 않고 반환합니다.
re.sub()의 구문
re.sub(pattern, repl, string):
예를 들어 아래 코드에서 'India'를 검색하고 'TP is the most Popular Tutorials site of India' 문자열에서 'World'로 바꿉니다.
예시
result=re.sub(r'India','the World','TP is the most popular Tutorials site of India') print result
출력
TP is the most popular Tutorials site of the World