首页 > 编程语言 > 详细

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

时间:2016-07-19 20:34:35      阅读:298      评论:0      收藏: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

 

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

原文:http://www.cnblogs.com/apple2016/p/5685973.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!