在Python中,match()
是模块重新
的语法 match()
re.match(pattern, string):
如果此方法出现在字符串的开头,则查找匹配项。例如,调用match()
字符串“ TP nhooo.com TP”并查找模式“ TP”将匹配。但是,如果只寻找教程,则模式将不匹配。让我们检查一下代码。
import re result = re.match(r'TP', 'TP nhooo.com TP') print result
输出结果
<_sre.SRE_Match object at 0x0000000005478648>
上面显示已找到模式匹配。要打印匹配的字符串,我们使用方法组。在模式字符串的开头使用“ r”,它表示python原始字符串。
import re result = re.match(r'TP', 'TP nhooo.com TP') print result.group(0)
输出结果
TP
现在让我们在给定的字符串中查找“ Tutorials”。在这里,我们看到字符串不是以“ TP”开头,因此它不应该返回匹配项。让我们看看我们得到了什么-
import re result = re.match(r'Tutorials', 'TP nhooo.com TP') print result
输出结果
None