此问题已在此处有答案:
regex pattern to match the end of a string(5个答案)
22天前关闭
我有这个正则表达式apple(?=\s)
,我需要它匹配apple
等,但不匹配apple
和apple fdsfdsfds
等。如果我使用re.match,它匹配apple
和apple fdsfdsfds
,如果我使用re.fullmatch,它什么都不匹配(因为整个字符串不匹配跨度结束的地方)。
如何保持正则表达式不变,但确保只在apple
上匹配?
1条答案
按热度按时间gcmastyq1#
我认为你想要的是把
$
放在前瞻中。