Subject: Re: Question reqarding display the content pending on the number of elements
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Wed, 23 Jan 2002 18:49:21 +0200
|
ªL ¤lªä wrote:
> the question is, how do i insert the comma at the end of each children
> element using xsl stylesheet BUT not adding a comma for the last
> children (e.g. wayne for the smith and Jay)?
Check whether a children is last one.
<xsl:template match="children">
<xsl:value-of select="."/>
<xsl:if test="position()!=last()">, </xsl:if>
</xsl:template>
in addition, is there a way
> to use xsl:if statment that will give a condition that states "if the
> number of element (children in the above example) are more than 1"
Just as you said:
<xsl:if test="count(children) > 1">
--
Oleg Tkachenko
Multiconn International, Israel
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|