我有xml文件:
<?xml version="1.0" encoding="utf-8"?>
<field>
<ID><![CDATA[<table style="width: 700px;" align="left" border="0"><tbody><]]></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;“? 问候。