Subject: Re: Selecting node at a certain position from a nodeset
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 22 Jan 2003 12:24:00 GMT
|
select="$sections/section[@group=1]/item[@id=1][$pos]"/>
the $pos item node that is a child of section[@group=1]
and has @id=1.
Since you have uniue ids within each section, if $pos is 1
you should get the same as
select="$sections/section[@group=1]/item[@id=1]"/>
but id pos is any number other than 1 you should get nothing as
there is only one item in each step satisfying [@id=1] so position() is
always equal to 1.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|