它可以映射当前父标签的每个子标签中的标签级联,像这样
从:
<p>
string
<b>
bold
<em>italic string</em>
also(bold)
</b>
</p>
TO:转换为这个字符串
<p>
string
</p>
<b p><!--------------------------------------- insert -->
bold
</b p><!--------------------------------------- insert -->
<em b p>italic string</em b p><!----------- insert -->
<b p> <!--------------------------------------- insert -->
also(bold)
</b p><!--------------------------------------- insert -->
<p>
</p>
jerry Cut HTML Tags 回答了基本问题(第 1 部分)并 再次包装 HTML 标签 Part/1
我认为正则表达式是我的朋友,在这种情况下也是如此:)