1 Star 0 Fork 14

Joe/ant-learn-python-100P

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
p031_re_search_email.py 434 Bytes
一键复制 编辑 原始数据 按行查看 历史
cztps2 提交于 2021-05-23 22:31 . xx
content = """
寻隐者[email protected]不遇
朝代:唐asdf12dsa#abc.com代
[email protected]者:贾岛
松下问童子,言师python-abc@163com采药去。
只在[email protected]此山中,云深不知处。
"""
import re
pattern = re.compile(r"""
[a-zA-Z0-9_-]+
@
[a-zA-Z0-9]+
\.
[a-zA-Z]{2,4}
""", re.VERBOSE)
results = pattern.findall(content)
for result in results:
print(result)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/stayhungry2022/ant-learn-python-100P.git
[email protected]:stayhungry2022/ant-learn-python-100P.git
stayhungry2022
ant-learn-python-100P
ant-learn-python-100P
master

搜索帮助