Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试匹配@or 或 string at,例如 forname@email和nameatemail。我想这就像
@
at
name@email
nameatemail
regex = '@|at'
或者
regex = '@|(at)'
但我就是找不到正确的语法。
我建议您使用Kodos来测试您的正则表达式(它还为您的正则表达式提供 Python 代码)。这用于正则表达式信息。
对于您的问题,两者都regex可以正常工作:
regex
match = re.search("@|at", subject) if match: result = match.group()