Re: First element of type, in same context

Subject: Re: First element of type, in same context
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 11 Oct 2000 11:04:47 GMT

   Is there an XPath that will allow me to 
   output/flag the first occurance of an element
   within a document, during a for-each loop?

   Thanks in advance,
   Lee Goddard

If your for-each is selecting all the relevant nodes then you can just
do test="position()=1" otherwise if the for-each is selecting a subset
of the nodes and you just want to check that there is no earlier node of
this type then you can do
test="not(preceding::xxx)"

But without more information its hard to say exactly what construct you
want.

David


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread