我正在尝试以这种方式进行正则表达式替换,但是它不起作用:
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