python学习:python中的正则表达式函数match和search()的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习:python中的正则表达式函数match和search()的区别相关的知识,希望对你有一定的参考价值。
match函数
binary_re=‘[01]*‘ pattern = re.compile(binary_re) m=re.match(binary_re,destStr) if m: print m.group(0) else: print ‘not match‘
match函数是从字符串起始位置开始进行匹配,匹配失败返回None,匹配成功的话,
m.group(0)为匹配的结果 2.search函数 binary_re=‘[01]*‘ pattern = re.compile(binary_re) m=re.search(binary_re,destStr) if m: print m.group(0) else: print ‘not match‘
search函数扫描整个字符串,并返回第一个成功的匹配
以上是关于python学习:python中的正则表达式函数match和search()的区别的主要内容,如果未能解决你的问题,请参考以下文章