我真的很难用'&'替换'&'
。在XML文件中。
我想改变这个
<Content>The &#x3A9; &lt;product name&gt;</Content>
进入那个
<Content>The Ω <product name></Content>
有没有办法使用替换功能更改它?如果没有,有其他选择吗?
谢谢
答案 0 :(得分:1)
<xsl:template match="Content">
<xsl:copy>
<xsl:value-of select="." disable-output-escaping="yes"/>
</xsl:copy>
</xsl:template>
结果:
<Content>The Ω <product name></Content>