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: Using count() with a param?




count(*[name()=$nodeName])

counts the nodes selected by

*[name()=$nodeName]

which as normal is the node set of child elements who's name is
$nodeName.

If you are evaluating this from the root then this will be 1 or 0
depending on whether the name given is the name of the top element.

If you want to count nodes other than child of the root you need to
select them, eg

count(//*[name()=$nodeName])

will search the whole document for element nodes of that name.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 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]