I want a result "123456" i.e. telephoneNumber in quotes after concat,but it's not giving.It gives "telephoneNumber" I am using Texedo for the transformation.
Balaji Loganathan
author and deputy
Bartender
Joined: Jul 13, 2001
Posts: 3150
posted
0
Try this, if its suits your case <xsl:variable name="telephoneNumber" select="'123456'" /> <xsl:value-of select="concat('& #34;',$telephoneNumber,'& #34;')" />
Note: there is no space between & #34;, & #34; is unicode value of "(quot)
I want a result "123456" i.e. telephoneNumber in quotes after concat,but it's not giving.It gives "telephoneNumber" I am using Texedo for the transformation.
Hopefully I am not missing anything, but you seem to be overly complicating thing unnecessarily....
Let us know if this works,
If that doesn't work, try -
Please do let us know what you find............. Thanks. [ October 06, 2004: Message edited by: Madhav Lakkapragada ]