为什么此正则表达式不返回None

时间:2018-11-17 18:34:15

标签: python regex string match

我不知道为什么这不匹配。如果有人可以在这里帮助我,我将不胜感激。

print(re.match(r"Newton", "Isaac Newton , physicist"))

1 个答案:

答案 0 :(得分:0)

re.match仅在字符串的开头匹配,请使用re.search在字符串中的任何位置查找第一个匹配项(请参见documentation)。