Frage

I have an input xml like this:

...    
<member name="&#916;"></member>
...

When I'm applying the identity transformation (i.e. I want to keep this part of the input and I want to change other parts of it) then I get this:

...
<member name="Δ"></member>
...

How can I keep that part literally?

War es hilfreich?

Lösung

in XSLT 2.0, you can use

<xsl:character-map name="charmap">
    <xsl:output-character character="&#916;" string="&amp;#916;"/>
</xsl:character-map>
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top