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.
可能重复: 使用正则表达式验证电子邮件地址
我正在开发一个 Python 应用程序,它匹配任何电子邮件地址,即使它包含 at 、 dot 甚至单词之间的空格。
帮助我开发正则表达式以获得预期的输出
您可以使用如下表达式:
[\w.+]+(?:@|\s+at\s+|\s*\(at\)\s*)(?:[\w+-]+(?:\.|\s+dot\s+))+\w+