美文网首页
python解析字符中的电话号码

python解析字符中的电话号码

作者: Xeroo | 来源:发表于2018-03-01 22:40 被阅读0次
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import re
phone = "电话号码:13666666666卖666元,电话号码:18655555555卖555元,电话号码:18666666666卖886元,电话号码:18999999999卖999元"
g = re.compile(r'\d+')#生成用来提取数字正则表达式对象
temp = g.findall(phone)
print temp
for b in range(len(temp)):
    if(len(temp[b]) == 11):#11位为电话号码
        #if(temp[b][0:3] == '186'):#找出前3位为186的号码
        #if(int(temp[b][0:3]) >= 186):#前3位大于等于186的号码,范围再加一个条件就行了不多说
            print"电话:",temp[b]

相关文章

网友评论

      本文标题:python解析字符中的电话号码

      本文链接:https://www.haomeiwen.com/subject/txtoxftx.html