xsl-list
[Top] [All Lists]

FW: [xsl] list with comma delimiter

2006-06-09 20:26:50

Christian,

Try this,

<xsl:for-each select="product">
<xsl:if test="not(position() = 1)">
<xsl:text>,  </xsl:text></xsl:if>
<xsl:value-of select="node()"/>
</xsl:for-each>

Regards,
Bhuvana
 
-----Original Message-----
From: Christian Rasmussen [mailto:christiankrasmussen(_at_)gmail(_dot_)com]
Sent: Friday, June 09, 2006 4:53 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] list with comma delimiter

Hi there,

I have xml document with a structure like this:

<items>
    <product>x</product>
    <product>y</product>
    <product>z</product>
    <product>a</product>
</items>

how do I make a template that returns:

x, y, z, a

In order to avoid starting and ending with a comma I have been struggling
with a template match like this:

    <xsl:for-each select="product">
              <xsl:if test="not(position() = first() | last())">
                  <xsl:text>,  </xsl:text><xsl:value-of select="node()"/>
              </xsl:if>
          </xsl:for-each>

but it doesn't work. can somebody help me?

thanks

/Christian

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


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