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 全字符串检索