RE: [xsl] Single quote once again (newby)

Subject: RE: [xsl] Single quote once again (newby)
From: <Jarno.Elovirta@xxxxxxxxx>
Date: Wed, 20 Apr 2005 13:51:40 +0300
Hi,

> In XSL I have this call to template:
> <xsl:call-template name="str:subst">
> 	<xsl:with-param name="text" select="$row/column[@name =
> $name]"/>
> 	<xsl:with-param name="replace" select="'"/>

Here you have an XPath expression which is a single APOSTROPHE. It,
unfortenately, is not syntactically valid XPath expression. You want

  <xsl:with-param name="replace" select='"&apos;"'/>

And the expression will be "'", i.e. a string with a single APOSTROPHE
character.

Cheers,

Jarno

Current Thread