Re: [xsl] Putting apostrophes around a string

Subject: Re: [xsl] Putting apostrophes around a string
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Fri, 27 Mar 2009 09:55:17 +0100
At 2009-03-27 09:50 +0100, Anna Svdling wrote:
I'm putting together a string using this code snippet:
<xsl:value-of select="concat('Entering state: ',$sname)" />

Now, I would like to change the string by putting apostrophes around
it so that the output is
'Entering state: name'

Is it possible to do this and, in that case, how? I've tried with
apostrophe and &apos; but didn't manage to get it to work in any of
the different ways I used it.
I'm using XSLT 1.0.

You have to distinguish between attribute specification delimiters and string delimiters.

The following should work:

<xsl:value-of select='concat("&apos;Entering state: ",$sname,"&apos;")' />

I hope this helps.

. . . . . . . . . . Ken

--
XSLT/XSL-FO/XQuery training in Los Angeles (New dates!) 2009-06-08
Training tools: Comprehensive interactive XSLT/XPath 1.0/2.0 video
Video lesson:    http://www.youtube.com/watch?v=PrNjJCh7Ppg&fmt=18
Video overview:  http://www.youtube.com/watch?v=VTiodiij6gE&fmt=18
G. Ken Holman                 mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Male Cancer Awareness Nov'07  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal

Current Thread