python re.match和re.search的不同使用

1,111次阅读
没有评论

python

在我们最早接触python的模块中,re可以说是比较频繁使用的了。不过有些人对于其中的知识点进行混淆,常见的出错是re.match和re.search使用范围上的差别。这里我们对它们的不同点进行了区分,同时带来了re模块不同函数的实例使用方法,下面我们一起来学习下吧。

1、re.match与re.search的区别

re.match只匹配字符串的开始,如果字符串开始不符合正则表达式,则匹配失败,函数返回None;而re.search匹配整个字符串,直到找到一个匹配。

2、使用实例

re.match

import re  
  
text = "JGood is a handsome boy, he is cool, clever, and so on..."  
m = re.match(r"(/w+)/s", text)  
if m:  
    print m.group(0), '/n', m.group(1)  
else:  
print 'not match'

re.search

import re  
  
text = "JGood is a handsome boy, he is cool, clever, and so on..."  
m = re.search(r'/shan(ds)ome/s', text)  
if m:  
    print m.group(0), m.group(1)  
else:  
    print 'not search'

以上就是python re.match和re.search的不同使用,相信看完全面文章后,大家已经能对这两个不同re模块的函数有所区分了,下次使用时不要再出错啦更多Python学习指路:python基础教程

神龙|纯净稳定代理IP免费测试>>>>>>>>天启|企业级代理IP免费测试>>>>>>>>IPIPGO|全球住宅代理IP免费测试

相关文章:

版权声明:程序人生2022-12-08发表,共计774字。
新手QQ群:570568346,欢迎进群讨论 Python51学习