Python的re.search和re.match有什么区别?

re.match()和re.search()都是Python模块re的方法。

如果re.match()方法出现在字符串的开头,则找到匹配项。例如,调用match()字符串“ TP nhooo.com TP”并查找模式“ TP”将匹配。 

示例

import re
result = re.match(r'TP', 'TP nhooo.com TP')
print result.group(0)

输出结果

TP

re.search()方法与re.match()类似,但它并不限制我们仅在字符串的开头查找匹配项。 

示例

import re
result = re.search(r'Tutorials', 'TP nhooo.com TP')
print result.group(0)

输出结果

Tutorials

在这里,您可以看到search()method可以从字符串的任何位置找到模式。