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?