美文网首页
python正则表达式方法search()和match()的区别

python正则表达式方法search()和match()的区别

作者: zenos876 | 来源:发表于2019-05-19 16:18 被阅读0次

    match()函数只检测字符串开头位置是否匹配,匹配成功才会返回结果,否则返回None

    import re
    print(re.match("func", "function"))
    # 打印结果 <_sre.SRE_Match object; span=(0, 4), match='func'>
    
    print(re.match("func", "function").span())
    # 打印结果  (0, 4)
    
    print(re.match("func1", "function"))
    # 打印结果 None
    
    

    search()函数会在整个字符串内查找模式匹配,只到找到第一个匹配然后返回一个包含匹配信息的对象,该对象可以通过调用group()方法得到匹配的字符串,如果字符串没有匹配,则返回None。

    import re
    print(re.search("tion", "function"))
    # 打印结果 <_sre.SRE_Match object; span=(4, 8), match='tion'>
    
    print(re.search("tion", "function").span())
    # 打印结果  (4, 8)
    
    print(re.search("tion1", "function"))
    # 打印结果 None
    
    

    相关文章

      网友评论

          本文标题:python正则表达式方法search()和match()的区别

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