How do you identify duplicate elements in an XPath 2.0 sequence ? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T04:27:00Zhttp://stackoverflow.com/feeds/question/133092http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence6How do you identify duplicate elements in an XPath 2.0 sequence ?woody2008-09-25T12:44:28Z2008-11-20T23:04:26Z
<p>I have an XPath expression which provides me a sequence of values like the one below:</p>
<p>1 2 2 3 4 5 5 6 7</p>
<p>It is easy to convert this to a set of unique values "1 2 3 4 5 6 7" using the distinct-values function. However, what I want to extract is the list of duplicate values = "2 5". I can't think of an easy way to do this. Can anyone help?</p>
http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/133291#1332910Answer by GerG for How do you identify duplicate elements in an XPath 2.0 sequence ?GerG2008-09-25T13:23:56Z2008-09-25T13:23:56Z<p>Calculate the difference between your original set and the set of distinct values. This is the set of numbers that occur more than once. Note that numbers in this result set are not necessarily distinct if they occur more than twice in the original sequence so convert again to a set of distinct values if this is required.</p>
http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/133658#1336580Answer by woody for How do you identify duplicate elements in an XPath 2.0 sequence ?woody2008-09-25T14:24:02Z2008-09-25T14:24:02Z<p>Yes, but the problem is how do I calculate the difference between two sequences ? You can compare sequences using the union / intersect / except keywords, but none of these will provide the 'difference' between the 2 sets of values.</p>
http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/134986#1349862Answer by JeniT for How do you identify duplicate elements in an XPath 2.0 sequence ?JeniT2008-09-25T18:14:46Z2008-09-25T18:14:46Z<p>What about:</p>
<pre><code>distinct-values(
for $item in $seq
return if (count($seq[. eq $item]) > 1)
then $item
else ())
</code></pre>
<p>This iterates through the items in the sequence, and returns the item if the number of items in the sequence that are equal to that item is greater than one. You then have to use <code>distinct-values()</code> to remove the duplicates from that list.</p>
http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/146713#146713-1Answer by michal kralik for How do you identify duplicate elements in an XPath 2.0 sequence ?michal kralik2008-09-28T20:50:01Z2008-09-28T20:50:01Z<p>What about xsl?
Is it applicable to your request?</p>
<pre><code> <xsl:for-each select="/r/a">
<xsl:variable name="cur" select="." />
<xsl:if test="count(./preceding-sibling::a[. = $cur]) > 0 and count(./following-sibling::a[. = $cur]) = 0">
<xsl:value-of select="." />
</xsl:if>
</xsl:for-each>
</code></pre>
http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/149638#1496380Answer by thughes for How do you identify duplicate elements in an XPath 2.0 sequence ?thughes2008-09-29T16:59:40Z2008-09-29T16:59:40Z<p>Thanks to all who answered, JeniT gave just the kind of solution I was looking for - thanks !</p>
http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/266852#266852-1Answer by Wilfred Knievel for How do you identify duplicate elements in an XPath 2.0 sequence ?Wilfred Knievel2008-11-05T21:50:49Z2008-11-20T23:04:26Z<p>Given the following xml:</p>
<pre><code><a>
<b>1</b>
<b>2</b>
<b>2</b>
<b>3</b>
<b>4</b>
<b>5</b>
<b>5</b>
<b>5</b>
<b>6</b>
<b>7</b>
</a>
</code></pre>
<p>The following XPath will give you a list of repeating values (in this case 2, 5, 5)</p>
<pre><code>/a/b[.=following-sibling::b]
</code></pre>
<p>However if you wanted a distinct list of repeating values (in this case 2, 5) then the following XPath should do the business for you:</p>
<pre><code>/a/b[.=following-sibling::b][not(.=preceding-sibling::b)]
</code></pre>
http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/287360#2873604Answer by Dimitre Novatchev for How do you identify duplicate elements in an XPath 2.0 sequence ?Dimitre Novatchev2008-11-13T16:11:30Z2008-11-17T20:09:08Z<p>Use this simple XPath 2.0 expression:</p>
<p> <strong><code>$vSeq[index-of($vSeq,.)[2]]</code></strong></p>
<p>where $vSeq is the sequence of values in which we want to find the duplicates.</p>
<p>For explanation of how this "works", see:</p>
<p><strong><a href="http://dnovatchev.spaces.live.com/Blog/cns!44B0A32C2CCF7488!904.entry" rel="nofollow"> <a href="http://dnovatchev.spaces.live.com/Blog/cns!44B0A32C2CCF7488!904.entry" rel="nofollow">http://dnovatchev.spaces.live.com/Blog/cns!44B0A32C2CCF7488!904.entry</a></a></strong></p>
<p>Cheers,</p>
<p>Dimitre Novatchev</p>