大家好,对python 正则表达式函数match()和search()的区别感兴趣的小伙伴,下面一起跟随三零脚本的小编来看看python 正则表达式函数match()和search()的区别的例子吧。
match()和search()都是python中的正则匹配函数,那这两个函数有何区别呢?
match()函数只检测RE是不是在string的开始位置匹配, search()会扫描整个string查找匹配, 也就是说match()只有在0位置匹配成功的话才有返回,如果不是开始位置匹配成功的话,match()就返回none
例如:
# 来自www.q3060.com
#! /usr/bin/env python
# -*- coding=utf-8 -*-
import re
text = 'q3060'
m = re.match(r"\w+", text)
if m:
print m.group(0)
else:
print 'not match'
结果是:q3060
而:
# 来自www.q3060.com
#! /usr/bin/env python
# -*- coding=utf-8 -*-
#
import re
text = '@q3060'
m = re.match(r"\w+", text)
if m:
print m.group(0)
else:
print 'not match'
结果是:not match
search()会扫描整个字符串并返回第一个成功的匹配
例如:
# 来自www.q3060.com
#! /usr/bin/env python
# -*- coding=utf-8 -*-
#
import re
text = 'q3060'
m = re.search(r"\w+", text)
if m:
print m.group(0)
else:
print 'not match'
结果是:q3060
那这样呢:
# 来自www.q3060.com
#! /usr/bin/env python
# -*- coding=utf-8 -*-
#
import re
text = '@a3060'
m = re.search(r"\w+", text)
if m:
print m.group(0)
else:
print 'not match'
结果是:a3060