[Home] [By Thread] [By Date] [Recent Entries]
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='"'"'/> And the expression will be "'", i.e. a string with a single APOSTROPHE character. Cheers, Jarno
|

Cart



