RE: [xsl] counting question

Subject: RE: [xsl] counting question
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Wed, 9 Jan 2002 10:33:52 -0000
> I am wanting to count all the child elements of a particular 
> element and treat them one way if there is only one child and 
> another if there are multiple. Is the best way to do this to 
> test if the child is both first and last or is there some 
> other more sensible method?

One simple way is
<xsl:choose>
<xsl:when test="child[2]">...(there are multiple children)
<xsl:otherwise>... (there's zero or one child)

But testing count(child)=1 is just as good and less "clever".

Mike Kay

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


Current Thread