首页 > 代码库 > python学习:python中的正则表达式函数match和search()的区别
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()的区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。