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: Determining last node


Larry Garfield wrote:
> What xpath statement do I need to use to determine
> if the current chapter element or sect1 element
> is the "last of its kind"?
> 
Context independent solutions (for chapter, substitute
sect1 as appropriate)
 last chapter in document: test="not(following::chapter)"
 last chapter in parent element:
   test="not(following-sibling::chapter)"
 last chapter in subtree starting at parent element
   test="not(following-sibling::*[descendant-or-self::chapter)"
I think you want the first.

HTH
J.Pietschmann

 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]