tough problem

Subject: tough problem
From: Evgenii Bazarov <evgeniibazarov@xxxxxxx>
Date: 19 May 00 10:59:42 MSD
Hello!

I am trying to produce comma-separated list of text nodes
from any XML using the following transform:

<xsl:template match="/">
 <xsl:apply-templates select="top"/>
</xsl:template>

<xsl:template match="text()[normalize-space()!='']">
 <xsl:value-of select="."/>,
</xsl:template>


However I can't get rid of trailing comma. 
I tried the 
  <xsl:if test="position()!=1"> 
test, however the position() is equal 1 more then once.

Any ideas how can I get around?

Thanks,
Evg




____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread