码迷,mamicode.com
首页 > 编程语言 > 详细

python学习:python中的正则表达式函数match和search()的区别

时间:2016-11-14 16:25:11      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:python

  1. 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()的区别

标签:python

原文地址:http://9603083.blog.51cto.com/9593083/1872515

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!