实现功能
Python数据分析实战-利用正则表达式提取文本中的URL网址和邮箱
实现代码
import re
#python正则表达式提取网址
myString ='https://github.com/milvus-io/milvus和https://github.com/milvus-io/bootcamp'
url=re.findall(r"(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*(),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)",myString)
print(url)
#python正则表达式提取邮箱
text='邮箱discussions@lists.aosc.io'
emails = re.findall(r"[a-z0-9.-+_]+@[a-z0-9.-+_]+.[a-z]+", text)
print(emails)
致力于只做原创,以最简单的方式理解和学习,关注我一起交流成长。
以上就是本篇文章【Python数据分析实战-利用正则表达式提取文本中的URL网址和邮箱(附源码和实现效果)】的全部内容了,欢迎阅览 ! 文章地址:http://mip.xhstdz.com/xwnews/599.html
栏目首页
相关文章
动态
同类文章
热门文章
网站地图
返回首页 物流园资讯移动站 http://mip.xhstdz.com/mobile/ , 查看更多