xsl-list
[Top] [All Lists]

RE: Single quote once again (newby)

2005-04-20 03:51:40
Hi,

In XSL I have this call to template:
<xsl:call-template name="str:subst">
      <xsl:with-param name="text" select="$row/column[(_at_)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 

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>