您当前的位置: 首页 >  Python

python正则表达式函数match()和search()的区别详解

发布时间:2020-05-06 07:37:26 ,浏览量:0

match()和search()都是python中的正则匹配函数,那这两个函数有何区别呢?

match()函数只检测RE是不是在string的开始位置匹配, search()会扫描整个string查找匹配, 也就是说match()只有在0位置匹配成功的话才有返回,如果不是开始位置匹配成功的话,match()就返回none。

例如:

#! /usr/bin/env python # -*- coding=utf-8 -*- import re
  
text= 'pythontab' m= re.match(r"\w+", text) if m: print m.group(0) else: print 'not match' 

结果是:pythontab

而:

#! /usr/bin/env python # -*- coding=utf-8 -*- # import re
  
text= '@pythontab' m= re.match(r"\w+", text) if m: print m.group(0) else: print 'not match' 

结果是:not match

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

例如:

#! /usr/bin/env python # -*- coding=utf-8 -*- # import re
  
text= 'pythontab' m= re.search(r"\w+", text) if m: print m.group(0) else: print 'not match' 

结果是:pythontab

那这样呢:

#! /usr/bin/env python # -*- coding=utf-8 -*- # import re
  
text= '@pythontab' m= re.search(r"\w+", text) if m: print m.group(0) else: print 'not match' 

结果是:pythontab

关注
打赏
1688896170
查看更多评论

暂无认证

  • 0浏览

    0关注

    109276博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文
立即登录/注册

微信扫码登录

0.3551s