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: extracting unique elements


>  >> Is there any easy way to select only the unique elements from
>  >> an xml document.
>  >
>  ><xsl:for-each select="//CUSTOMER[not(.=preceding::CUSTOMER)]">
>  ><xsl:value-of select="."/>
>  ></xsl:for-each>
> 
> Doesn't this require the CUSTOMER elements to be sorted?
> 
No. you're testing whether the value is the same as ANY preceding customer,
not just the immediately preceding customer. For the latter you would write:

select="//CUSTOMER[not(.=preceding::CUSTOMER[1])]"

MHK


 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]