从字符串中删除所有单独的正则表达式匹配项

时间:2017-11-06 06:31:22

标签: python regex

我有一个字符串,

code="this one <code> first </code> and again <code>second</code> plz this time"

我想删除<code></code>代码中的所有文字。

结果将是,

result_string="this one and again plz this"

然而在python我的代码中,

code_regex=re.compile('<code>.*</code>+')
code_regex.sub('',code)

但是,它会删除第一个<code>标记与最后一个</code>标记之间的所有文本。不是我想要的方式。什么可以解决方案?

0 个答案:

没有答案