标签: python regex tags
我想使用Regex用不同的变量替换开始标记,其内容和结束标记。
例如:<opening tag>This is a nice example<closing tag>应该成为replacement
<opening tag>This is a nice example<closing tag>
replacement
到目前为止,这是我提出的:
x = re.sub(r'<[^>]+>+[.+]+<[^>]+>', 'replacement ', x)
似乎不起作用的部分是+[.+]+<[^>]+>
+[.+]+<[^>]+>