Python字符串匹配之6种方法的使用详解
1.re.match尝试从字符串的起始位置匹配一个模式,如果不是起始位置匹配成功的话,match()就返回none。
importre line="thishdr-biz123modelserver456" pattern=r"123" matchObj=re.match(pattern,line)
2.re.search扫描整个字符串并返回第一个成功的匹配。
importre line="thishdr-bizmodelserver" pattern=r"hdr-biz" m=re.search(pattern,line)
3.Python的re模块提供了re.sub用于替换字符串中的匹配项。
importre line="thishdr-bizmodelargs=server" patt=r'args=' name=re.sub(patt,"",line)
4.compile函数用于编译正则表达式,生成一个正则表达式(Pattern)对象,供match()和search()这两个函数使用。
importre pattern=re.compile(r'\d+')
5.re.findall在字符串中找到正则表达式所匹配的所有子串,并返回一个列表,如果没有找到匹配的,则返回空列表。
importre line="thishdr-bizmodelargs=server" patt=r'server' pattern=re.compile(patt) result=pattern.findall(line)
6.re.finditer和findall类似,在字符串中找到正则表达式所匹配的所有子串,并把它们作为一个迭代器返回。
importre it=re.finditer(r"\d+","12a32bc43jf3") formatchinit: print(match.group())
PS:Python字符串匹配及正则表达式说明
解析url地址正则表达式:
regexp=(r'^(?P[a-z][\w\.\-\+]+)?:(//)?' r'(?:(?P \w+):(?P [\w\W]+)@|)' r'(?P [\w-]+(?:\.[\w-]+)*)(?::(?P \d+))?/?' r'(?P \/[\w\.\/-]+)?(?P \?[\w\.*!=&@%;:/+-]+)?' r'(?P #[\w-]+)?$') match=re.search(regexp,url.strip(),re.U) ifmatchisNone: raiseValueError('Incorrenturl:{0}'.format(url)) url_parts=match.groupdict() url='https://blog.csdn.net/weixin_40907382/article/明细/79654372' print(url_parts):{'scheme':'https','username':None,'password':None,'domain':'blog.csdn.net','port':None,'path':'/weixin_40907382/article/明细/79654372','query':None,'fragment':None}
总结
以上所述是小编给大家介绍的Python字符串匹配之6种方法的使用,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!