Python中的search()函数是什么?
在Python中,search()
是re模块的一种方法。
search()
的语法
re.search(pattern, string):
它与re.match()类似,但是它并不限制我们仅在字符串的开头查找匹配项。与re.match()方法不同,此处在字符串“TPnhooo.comTP”中搜索模式“nhooo”将返回匹配项。
示例
import re result = re.search(r'nhooo', 'TP nhooo.com TP') print result.group(0)
输出结果
nhooo
在这里您可以看到,search()方法
可以从字符串的任何位置查找模式,但是它仅返回搜索模式的第一个匹配项。