don't want xslt intepret the entity characters

2019-07-09 10:46发布

The xml was like this:

< cell i='0' j='0' vi='0' parity='Odd' subType='-1'> & #34;String& #39;</cell> 

But after the intepretion of the xsl, the output is like this:

< td nowrap="true" class="gridCell" i="0" j="0">"String'< /td>

I would like to keep the & #34; and & #39;. I've tried character map,but it doesn't work. The code is like this:

      < xsl:character-map name="raquo.ent">

         <xsl:output-character character="'" string="&amp;apos;"/>
         <xsl:output-character character="&#39;" string="&amp;apos;"/>
      < /xsl:character-map>

< xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" use-character-maps="raquo.ent"/>

Can anyone help? Thank you very much!

1条回答
混吃等死
2楼-- · 2019-07-09 11:37

This transformation:

<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <xsl:output omit-xml-declaration="yes" indent="yes"
    use-character-maps="raquo.ent"/>

    <xsl:character-map name="raquo.ent">
     <xsl:output-character character="&#34;" string='&amp;#34;'/>
     <xsl:output-character character="&#39;" string='&amp;#39;'/>
    </xsl:character-map>

 <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
 </xsl:template>
</xsl:stylesheet>

when applied on the provided XML document:

<cell i='0' j='0' vi='0' parity='Odd' subType='-1'>&#34;String&#39;</cell>

produces the wanted, correct result:

<cell i="0" j="0" vi="0" parity="Odd" subType="-1">&#34;String&#39;</cell>
查看更多
登录 后发表回答