正则表达式替换标签以使 html 有效

Regex to replace tags to make valid html

我正在尝试转换下面提到的标签:

[caption id="attachment_812" align="alignleft" width="240"]<img class="wp-
image-92692" src="sample.jpg" alt="" width="316" height="210"/>Sample 
text[/caption]

使用正则表达式的以下内容:

<caption id="attachment_812" align="alignleft" width="240"><img class="wp-
image-92692" src="sample.jpg" alt="" width="316" height="210"/>Sample 
text</caption>

所以基本上我想将 [caption] 标签转换成 <caption>。使其成为有效的html标签,然后使用html敏捷包解析标签。

下面是 C# 代码:

//Replace [caption]
htmlSource = Regex.Replace(htmlSource, @"\[caption]", "<caption>");
//Replace [/caption]
htmlSource = Regex.Replace(htmlSource, @"\[/caption]", "</caption>");

这适用于没有属性的标题标签。我正在寻找一个更好的解决方案,甚至可以保留属性,只需替换方括号即可使其成为有效的 html 标签。

Regex.Replace(htmlSource, @"\[(\/*caption.*?)\]", @"<>")

Demo