标签: python regex string match
我不知道为什么这不匹配。如果有人可以在这里帮助我,我将不胜感激。
print(re.match(r"Newton", "Isaac Newton , physicist"))
答案 0 :(得分:0)
re.match仅在字符串的开头匹配,请使用re.search在字符串中的任何位置查找第一个匹配项(请参见documentation)。
re.match
re.search