我有一个txt = 'The fat \m{cat sat} on \m{the} mat.'
希望输出的文本'The fat cat sat on the mat.'
我尝试了以下两种方法:
re.sub(r'\\m\{(.*)\}', '', txt)
# output: 'The fat mat.'
re.sub(r'\\m\{(?=.*)\}', '', txt)
# output: 'The fat \\m{cat sat} on \\m{the} mat.'
为什么会这样,我该怎么办?