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()를 사용하세요.
부인 성명: 제공된 모든 리소스는 부분적으로 인터넷에서 가져온 것입니다. 귀하의 저작권이나 기타 권리 및 이익이 침해된 경우 자세한 이유를 설명하고 저작권 또는 권리 및 이익에 대한 증거를 제공한 후 이메일([email protected])로 보내주십시오. 최대한 빨리 처리해 드리겠습니다.
Copyright© 2022 湘ICP备2022001581号-3