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: First element of type, in same context




   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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]