xml - convert HTML entities -
i have xml file:
<?xml version="1.0" encoding="utf-8"?> <field> <id><![cdata[<table style="width: 700px;" align="left" border="0"><tbody><]]></id> </field>
i want convert xml xsl to:
<?xml version="1.0" encoding="utf-8"?> <field> <id><![cdata[<table style="width: 700px;" align="left" border="0"><tbody><]]></id> </field>
my xsl file is:
<?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>
how can convert these tags html tags <>" ? regards.
Comments
Post a Comment