【python路上小记】正则匹配手机号

  • Post author:
  • Post category:python




使用re模块

举例三种格式

import re
number = ['130-4567-8900', '18820202021', '156 5555 6666']
for no in number:
    right = re.findall("^1[\d]{2}-\d{4}-\d{4}$|^1\d{10}$|^1[\d]{2} \d{4} \d{4}$", no)
    print(no)



版权声明:本文为qq_43152507原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。