美文网首页
正则_^和$匹配开始和结尾字符

正则_^和$匹配开始和结尾字符

作者: 测试媛617 | 来源:发表于2018-08-21 15:03 被阅读0次
    import re
    '''
    以^开头,以$结尾
    '''
    beginWithHello = re.compile(r'^Hello')
    beginWithHello.search('Hello World')
    print(beginWithHello.search('He said Hello')==None)
    
    endWithNumber = re.compile(r'\d$')
    endWithNumber.search('1234567890')
    print(endWithNumber.search('12 34567890 ')==None)
    
    结果是:
    True
    True
    

    相关文章

      网友评论

          本文标题:正则_^和$匹配开始和结尾字符

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