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: How to count the nodes based on attribute presence


> 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


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