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

Python 投稿 44700 0 评论

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

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

match()函数只检测RE是不是在string的开始位置匹配;

search()会扫描整个string查找匹配;

也就是说match()只有在0位置匹配成功的话才有返回,如果不是开始位置匹配成功的话,match()就返回none;

例如:

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

sfjvip

而:

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

如果这样呢:

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

sfjvip

编程笔记 » Python正则表达式match()和search()函数区别详解

赞同 (55) or 分享 (0)
游客 发表我的评论   换个身份
取消评论

表情
(0)个小伙伴在吐槽