Subject: RE: How to count the nodes based on attribute presence
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Sat, 8 Dec 2001 16:34:00 -0000
|
> In my XML a tag is such that it can or cannot contain
> an attribute like the following:
> ------
> <Task due="true">
> <Do>Call mother</Do>
> </Task>
> <Task>
> <Do>Make a report</Do>
> </Task>
> -----
>
> I want to count the Task nodes which do not contain
> attribute due="true"
count(Task[not(@due='true')])
Mike Kay
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|