使用正则表达式提取文本“111111@qq.comabcdefg@126.comabc123@163.com”中所有的邮箱号。python代码
时间: 2023-04-04 16:02:47 浏览: 327
6.2.3++域名服务器+(1).pptx
import re
text = "111111@qq.comabcdefg@126.comabc123@163.com"
pattern = r'\b\w+@\w+\.\w+\b'
emails = re.findall(pattern, text)
print(emails)
阅读全文