python正则表达式匹配


import re
# 匹配以字符串开头

pa = re.compile(r"^1\d+.\d+.\d+|^1\d+")
url = re.match(pa,"1rrrrwww.baidu.coms   11254122")
if url:
    print(url.group())


# print(re.match('www', 'www.runoob.com').span())  # 在起始位置匹配
# print(re.match('com', 'www.runoob.com'))         # 不在起始位置匹配

match 从字符串开始进行匹配
search 全字符串检索

上一篇:es match、match_phrase、query_string和term的区别


下一篇:std::string的一些常用操作封装