[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Using count() with a param?


Subject: Re: [xsl] Using count() with a param?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 28 May 2002 21:47:13 +0100


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



Current Thread