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

kkkkk 2018年12月17日 22:48 Python基础

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


文章评论(0)
  • avatar kkkkkk 2018年12月21日 11:31
    这评论真好啊!
    kkkkk
    2018年12月21日 11:16
    层次井然,结构严谨 行文洒脱,趣味隽永。淡远情逸,隽永含蓄。 平铺直叙,亦有情韵。
    回复
  • avatar kkkkkk 2018年12月21日 11:31
    Youkou老师厉害吧!
    kkkkklxinde
    2018年12月21日 11:17
    选词失当,譬喻不切 认识错误,不切题意。文辞生硬,未能达意。含义空虚,句亦欠顺。
    回复
  • avatar kkkkklxinde 2018年12月21日 11:17
    选词失当,譬喻不切 认识错误,不切题意。文辞生硬,未能达意。含义空虚,句亦欠顺。
    回复
  • avatar kkkkk 2018年12月21日 11:16
    层次井然,结构严谨 行文洒脱,趣味隽永。淡远情逸,隽永含蓄。 平铺直叙,亦有情韵。
    回复