[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Here’s how to eliminate duplicate elements using XSLT

Subject: Here’s how to eliminate duplicate elements using XSLT
From: "Roger L Costello costello@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 9 Jul 2021 13:56:31 -0000
 Here’s how to eliminate duplicate elements using XSLT
Hi Folks,

[This is a summary of yesterday's discussion, for the archives.]

I have an XML document that consists of <row> elements:

<Document>
    <row>
        <x>1</x>
       <y>2</y>
    </row>
    <row>
        <x>3</x>
       <y>4</y>
    </row>
    <row>
        <x>1</x>
       <y>2</y>
    </row>
</Document>

I want to eliminate duplicate rows. row[1] and row[3] have the same elements
with the same values. They are duplicates. I only want one of them.

Michael Kay responded:

In this situation, you can use grouping:

<xsl:for-each-group select="row" group-by="x, y" composite="yes">
      <xsl:sequence select="current-group()[1]"/>
</xsl:for-each>

Roger: Wow! That simple for-loop is doing an enormous amount of work 
grouping elements by their content, iterating over the groups, selecting the
first of each group (thus, deleting the duplicates). That is beautiful code.
Thank you Michael.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.