美文网首页
正则_括号分组

正则_括号分组

作者: 测试媛617 | 来源:发表于2018-08-20 17:54 被阅读0次
    import re
    
    phone = re.compile(r'(\d\d\d)-(\d\d\d-\d\d\d\d)')
    mo = phone.search('my phone is 415-111-2345')
    print(mo.group(1))
    print(mo.groups())
    areaCode,mainNumber = mo.groups()
    print(areaCode)
    
    结果是:
    415
    ('415', '111-2345')
    415
    

    相关文章

      网友评论

          本文标题:正则_括号分组

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