摘要: import re text="山东省临沂市兰山区 市委大院中区21号楼4单元 276002 奥特曼1号 18254998111" # 匹配手机号 m=re.findall(r"1\d{10}",text) if m: print(m) # 匹配电话号 pattern = re.compile(r" 阅读全文
posted @ 2019-04-17 14:57 chease 阅读(755) 评论(0) 推荐(0)