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]

Re: //* and position()


Gary L Peskin wrote:
> In the case of //*[position() < 3], this is an abbreviation for
> 
> 	/descendents-or-self::node()/child::*[position() < 3]
> 
> In other words, this will select any node that is one of the first two
> children of another node.  
> [...]
> In the case of $all_elements[position() < 3] (equivalent to
> (//*)[position() < 3]), this will select the first two items in the
> node-set $all-elements.

I saw this in the XPath spec when I was looking for the answer, but it
just didn't click. Even when I considered that // was an abbreviation, I
couldn't see how $foo[bar] was different from //*[bar] if $foo was //*.
Your explanation makes more sense. Thank you.

   - Mike
____________________________________________________________________
Mike J. Brown, software engineer at         My XML/XSL resources:
webb.net in Denver, Colorado, USA           http://www.skew.org/xml/


 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]