python正则表达式中re.match与re.search有什么区别

re.match只匹配字符串的开始,如果字符串开始不符合正则表达式,则匹配失败,函数返回None;而re.search匹配整个字符串,直到找到一个匹配。


例如:
print(re.match('hello', 'hello world').span())   ==>(0, 5)
而print(re.match('world', 'hello world'))   ==>None

print(re.search('hello', 'hello world').span())   ==>(0, 5)
而print(re.search('world', 'hello world').span())   ==>(6,11)

更多精选文章
标签: world、match、search、print、匹配
一个创业中的苦逼程序员
笔试题


刷题


简历模板


AI算法


大数据


内推


推荐阅读:
阿里巴巴笔试面试大全
腾讯笔试面试大全
百度笔试面试大全
今日头条笔试面试大全
网易笔试面试大全
Google笔试面试大全
更多笔试面试大全
隐藏