當前我使用這個簡單的腳本來搜索字符串中的標籤;python正則表達式也匹配特殊字符
tag = "#tag"
text = "test string with #tag inserted"
match = re.search(tag, text, re.IGNORECASE) #matches
現在假設文本包含a-acute;
tag = "#tag"
text = "test string with #tág inserted"
match = re.search(tag, text, re.IGNORECASE) #does not match :(
如何使此匹配工作?也應該爲其他特殊字符(é,è,í等)工作。
在此先感謝!
做 「等特殊字符」 包括像Δ或Ж或新? – georg