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]
Other format: [Raw text]

RE: counting question


> 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


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