码迷,mamicode.com
首页 > 编程语言 > 详细

python正则匹配示例

时间:2019-04-17 15:24:04      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:手机号   山东   span   pattern   compile   示例   text   nbsp   正则匹配   

text="山东省临沂市兰山区 市委大院中区21号楼4单元 276002 奥特曼1号 18254998111"

#匹配手机号
m=re.findall(r"1\d{10}",text)
if m:
    print(m)

#匹配电话号
pattern = re.compile(r"((\d{3}|\(\d{3}\)|\d{4}|\(\d{4}\))?(\s|-|.)?(\d{8}))")
a = re.match(pattern, text)
if a:
    print(a.group())

 

python正则匹配示例

标签:手机号   山东   span   pattern   compile   示例   text   nbsp   正则匹配   

原文地址:https://www.cnblogs.com/ying-chease/p/10723563.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!