Subject: Re: list with comma delimiter
From: Andrew Franz <afranz0@xxxxxxxxxxxxxxxx>
Date: Mon, 12 Jun 2006 17:15:09 +1000
|
or...
<xsl:template match="product"><xsl:value-of select="."/>,</xsl:template>
<xsl:template match="product[position()=last()]"><xsl:value-of
select="."/></xsl:template>
Georg Hohmann wrote:
<items>
<product>x</product>
<product>y</product>
<product>z</product>
<product>a</product>
</items>
You could try this:
<xsl:for-each select="product">
<xsl:value-of select="."/>
<xsl:if test="position() != last()">
<xsl:text>, </xsl:text>
</xsl:if>
</xsl:for-each>
GH
|