xsl-list
[Top] [All Lists]

Re: [xsl] function last() not matching the last element tag

2007-01-26 10:23:22

that is defined to select all child::node(), right?  
yes

making it a sequence of 7 items, three p elements and 4 text()
element?

yes

What am I missing? 
the fact that last() is in a predicate so (necessarily) in a step so the
current node list at that point is the set of nodes in teh current step
/a/b[last()] selects every b that's the last b child of its parent.
(/a/b)[last()] would select the last b in the sequence, if we were
talkning oabout xpath, but the context here was a pattern, and this
isn't a legal pattern.

David


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--