美文网首页
正则_星号匹配零次或多次

正则_星号匹配零次或多次

作者: 测试媛617 | 来源:发表于2018-08-20 18:14 被阅读0次
    import re
    batRegex = re.compile(r'Bat(wo)*man')
    mo1 = batRegex.search('The Adventures of Batman')
    print(mo1.group())
    
    mo2 = batRegex.search('The adventures of Batwoman')
    print(mo2.group())
    
    mo3 = batRegex.search('the adventures of Batwowowowoman')
    print(mo3.group())
    
    结果是:
    Batman
    Batwoman
    Batwowowowoman
    

    相关文章

      网友评论

          本文标题:正则_星号匹配零次或多次

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