替换标记之间的正则表达式

时间:2018-05-07 16:01:44

标签: python regex tags

我想使用Regex用不同的变量替换开始标记,其内容和结束标记。

例如:<opening tag>This is a nice example<closing tag>应该成为replacement

到目前为止,这是我提出的:

x = re.sub(r'<[^>]+>+[.+]+<[^>]+>', 'replacement ', x) 

似乎不起作用的部分是+[.+]+<[^>]+>

0 个答案:

没有答案