转换HTML实体

时间:2017-04-07 08:36:26

标签: xml xls

我有xml文件:

<?xml version="1.0" encoding="utf-8"?>
<field>
<ID><![CDATA[&lt;table style=&quot;width: 700px;&quot; align=&quot;left&quot; border=&quot;0&quot;&gt;&lt;tbody&gt;&lt;]]></ID>
</field>

我想通过xsl将此xml转换为:

<?xml version="1.0" encoding="utf-8"?>
<field>
<ID><![CDATA[<table style="width: 700px;" align="left" border="0"><tbody><]]></ID>
</field>

我的xsl文件是:

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:template match="@*|node()">
        <xsl:copy>
            <xsl:apply-templates select="@*|node()"/>
        </xsl:copy>
    </xsl:template>
</xsl:stylesheet>

如何将这些标签html标签转换为&lt;&gt;“? 问候。

0 个答案:

没有答案