Subject: Re: Determining last node
From: Joerg Pietschmann <joerg.pietschmann@xxxxxx>
Date: Tue, 14 Aug 2001 10:07:03 +0200
|
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
|