Python 的正則表達式 (Regular Expressions)
Python 提供了 re 模組,這使得處理複雜的文本匹配變得非常高效。正則表達式用來查找、替換和驗證文本模式。
import re
pattern = r"\b[A-Za-z]+\b"
text = "Hello, world! Welcome to Python."
matches = re.findall(pattern, text)
print(matches)
正則表達式是一種強大的工具,特別是在處理文本數據時,它可以顯著減少代碼複雜度