首页 > 代码库 > python学习:python中的正则表达式函数match和search()的区别

python学习:python中的正则表达式函数match和search()的区别

  1. match函数

binary_re=‘[01]*‘
pattern = re.compile(binary_re)
m=re.match(binary_re,destStr)
if m: 
    print m.group(0)
else:
    print ‘not match‘

match函数是从字符串起始位置开始进行匹配,匹配失败返回None,匹配成功的话,

m.group(0)为匹配的结果
2.search函数
binary_re=‘[01]*‘
pattern = re.compile(binary_re)
m=re.search(binary_re,destStr)
if m: 
    print m.group(0)
else:
    print ‘not match‘

search函数扫描整个字符串,并返回第一个成功的匹配

python学习:python中的正则表达式函数match和search()的区别