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

Python re模块中search与match的区别

时间:2014-08-12 16:25:34      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:io   ar   python   on   字符串   sp   函数   print   

match()函数是在string的开始位置匹配,如果不匹配,则返回None

search()会扫描整个string查找匹配;也就是说match()只有在0位置匹配成功的话才有返回,


例如:

print(re.match(‘super’, ‘superstition’).span())   会返回(0, 5)

而print(re.match(‘super’, ‘insuperable’))   则返回None

search()会扫描整个字符串并返回第一个成功的匹配

例如:print(re.search(‘super’, ‘superstition’).span())返回(0, 5)

print(re.search(‘super’, ‘insuperable’).span())返回(2, 7)

Python re模块中search与match的区别,布布扣,bubuko.com

Python re模块中search与match的区别

标签:io   ar   python   on   字符串   sp   函数   print   

原文地址:http://www.cnblogs.com/sunshore/p/3907290.html

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