这是Python正则表达式的两个基本示例
如果re.match()方法出现在字符串的开头,则找到匹配项。例如,调用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>
re.search()方法与re.match()类似,但它并不限制我们仅在字符串的开头查找匹配项。与re.match()方法不同,此处在字符串“ TP nhooo.com TP”中搜索模式“ Tutorials”将返回匹配项。
import re result = re.search(r'Tutorials', 'TP nhooo.com TP') print result.group()
输出结果
Tutorials
在这里您可以看到,search()
method可以从字符串的任何位置找到模式,但是它仅返回搜索模式的第一个匹配项。