赞
踩
# 匹配字符串是否以‘mr’开头,不区分大小写。 import re pattern = r'mr_\w+' # 模式字符串 string = 'MR_SHOP mr_shop' # 要匹配的字符串 match = re.findall(pattern,string,re.I