我怎样才能更换'&'用'&'在XML文件中?

时间:2014-10-24 14:59:30

标签: xml xslt

我真的很难用'&'替换'&'。在XML文件中。

我想改变这个

<Content>The &amp;#x3A9; &amp;lt;product name&amp;gt;</Content>

进入那个

<Content>The &#x3A9; &lt;product name&gt;</Content>

有没有办法使用替换功能更改它?如果没有,有其他选择吗?

谢谢

1 个答案:

答案 0 :(得分:1)

<xsl:template match="Content">
    <xsl:copy>
        <xsl:value-of select="." disable-output-escaping="yes"/>
    </xsl:copy>
</xsl:template>

结果:

<Content>The &#x3A9; &lt;product name&gt;</Content>