Python의 .replace() 메서드와 .re.sub() 함수는 모두 문자열의 일부를 바꾸는 데 사용되지만 기능과 사용 사례가 다릅니다. 이들 간의 근본적인 차이점은 다음과 같습니다.
.replace() 사용:
text = "The quick brown fox jumps over the lazy dog" result = text.replace("fox", "cat") print(result) # Output: The quick brown cat jumps over the lazy dog
.re.sub() 사용:
import re text = "The quick brown fox jumps over the lazy dog" pattern = r'\bfox\b' replacement = "cat" result = re.sub(pattern, replacement, text) print(result) # Output: The quick brown cat jumps over the lazy dog
.re.sub()를 사용한 고급 예:
import re text = "The quick brown fox jumps over the lazy dog" pattern = r'(\b\w+\b)' # Matches each word replacement = lambda match: match.group(1)[::-1] # Reverses each matched word result = re.sub(pattern, replacement, text) print(result) # Output: ehT kciuq nworb xof spmuj revo eht yzal god
요약하자면, 간단하고 간단한 하위 문자열 교체에는 .replace()를 사용하고, 패턴 기반 교체를 위해 정규식의 강력함과 유연성이 필요할 때는 .re.sub()를 사용하세요.
위 내용은 Python: `.replace()`와 `.re.sub()` 메서드의 차이점의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!