码迷,mamicode.com
首页 > 其他好文 > 详细

区别比较 match和search

时间:2019-09-11 11:58:36      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:ash   div   log   判断   声明   imp   das   一个人   match   

match() 从第一个字符开始找, 如果第一个字符就不匹配就返回None, 不继续匹配. 用于判断字符串开头或整个字符串是否匹配,速度快。
search() 会整个字符串查找,直到找到一个匹配。
 
import re
print(re.match(‘hello‘, ‘hello world‘).span())
print(re.match(‘hello‘, ‘hihelloworld‘))
print(re.search(‘hello‘, ‘hello world‘).span())
print(re.search(‘hello‘, ‘hihelloworld‘).span())
输出结果为:
(0, 5)
None
(0, 5)
(2, 7)
————————————————
版权声明:本文为CSDN博主「等一个人微笑丶」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_42523181/article/details/81749121

区别比较 match和search

标签:ash   div   log   判断   声明   imp   das   一个人   match   

原文地址:https://www.cnblogs.com/xingkongzhizhu/p/11505041.html

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