This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

tough problem


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]