[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] amp symbols
Subject: Re: [xsl] amp symbols
From: George Cristian Bina <george@xxxxxxxxxxxxx>
Date: Fri, 30 Jun 2006 21:46:23 +0300
|
If your transformation output will be set to text then you will get &
<xsl:output method="text"/>
But if you output XML then & is represented in a text node as an entity
& a m p ; (some spaces added).
Best Regards,
George
---------------------------------------------------------------------
George Cristian Bina
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
Renate wrote:
I have <xsl:value select="ROW/C_NAME">.
For example, if I have C_NAME = ABC& (containts symbol &), then as
a result I'v got ABC&, instead of ABC&.
How to deal with this?
|