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


Hi Jo,

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

You can do it using the count() function:

  count(*) = 1

returns true if the context node has exactly one child element.

Another method is to test whether there is a second child element:

  not(*[2])

returns true if there isn't a second child element (i.e. if there are
0 or 1 child elements).

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 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]