在Python中使用单词边界正则表达式

时间:2019-11-11 21:11:30

标签: python regex

我正在尝试以这种方式进行正则表达式替换,但是它不起作用:

sentence = '<eps> hello world'
sentence = re.sub(r'\b<eps>\b', '', sentence).strip()
print(sentence)
<eps> hello world

如果我使用任何常规单词而不是<eps>,它都可以工作:

sentence = 'hello world'
sentence = re.sub(r'\bhello\b', '', sentence).strip()
print(sentence)
world

0 个答案:

没有答案