Subject: Re: How to implement Divide and Conquer Algo on this template !! Getting Callstack overflow error
From: "Dimitre Novatchev" <dnovatchev@xxxxxxxxx>
Date: Fri, 19 Sep 2003 19:26:16 +0200
|
> Applying the method shown below how do i get the unique names in a
variable
<xsl:template match="/">
<xsl:variable name="outResults">
<xsl:for-each select="......">
...................................
</xsl:for-each>
</xsl:variable
</xsl:template>
> like
> "a`b`c`m`X`Y`Z"
Instead of:
<xsl:value-of select="concat(name(), '
')"/>
use:
<xsl:value-of select="concat(name(), '`')"/>
=====
Cheers,
Dimitre Novatchev.
http://fxsl.sourceforge.net/ -- the home of FXSL
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|