5.Python里面match()和search()的区别?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.Python里面match()和search()的区别?相关的知识,希望对你有一定的参考价值。

Python里面match()和search()的区别?

‘‘‘match()从第一个字符开始找,如果第一个就不匹配,会直接返回None,不继续匹配.主要用于匹配开头‘‘‘



#coding=utf-8

import re

result = re.match("www","www.cn")

result.group()
 
>>‘www‘
# 否则返回None


‘‘‘search()会在整个字符串中查找,知道找到一个匹配的‘‘‘
#coding=utf-8
import re

ret = re.search(r"\d+", "阅读次数为 9999")
ret.group()

>> 9999











以上是关于5.Python里面match()和search()的区别?的主要内容,如果未能解决你的问题,请参考以下文章

Python里面search()和match()的区别

Python RE模块中search和match的区别

re.match re.search re.findall区别

区别比较 match和search

python题目-----search()和match()的区别

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