xsl-list
[Top] [All Lists]

RE: Single quote once again (newby)

2005-04-20 03:53:26

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="'"/>
      <xsl:with-param name="with" select="\'"/>               
                      
</xsl:call-template>

A string literal was not closed. -->'<--
[snip]
P.S. - Sorry if there's some mistakes, but I'm still in my 
beginings in the XSLT World

If you only need to do a single character replace then you can use the
translate() function:

<xsl:value-of select="translate($text, $replace, $with)"/>

cheers
andrew

--~------------------------------------------------------------------
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>