我有3幾乎相同的正則表達式正則表達式OR兩個或多個條件?
re_pattern = re.compile(r'[\w\.-]+ \(at\) +[\w\.-]+')
re_pattern = re.compile(r'[\w\.-]+\ at\ +[\w\.-]+')
re_pattern = re.compile(r'[\w\.-]+\(at\)+[\w\.-]+')
如何我可以結合一個? 像
re_pattern = re.compile(r'[\w\.-]+\(at\)|\ at\ | \(at\) +[\w\.-]+')
我嘗試了,但沒有工作
**應該是什麼比賽** –
FYI:點在字符類中不需要轉義 – Toto