How do you identify duplicate elements in an XPath 2.0 sequence ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:27:00Z http://stackoverflow.com/feeds/question/133092 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence 6 How do you identify duplicate elements in an XPath 2.0 sequence ? woody 2008-09-25T12:44:28Z 2008-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#133291 0 Answer by GerG for How do you identify duplicate elements in an XPath 2.0 sequence ? GerG 2008-09-25T13:23:56Z 2008-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#133658 0 Answer by woody for How do you identify duplicate elements in an XPath 2.0 sequence ? woody 2008-09-25T14:24:02Z 2008-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#134986 2 Answer by JeniT for How do you identify duplicate elements in an XPath 2.0 sequence ? JeniT 2008-09-25T18:14:46Z 2008-09-25T18:14:46Z <p>What about:</p> <pre><code>distinct-values( for $item in $seq return if (count($seq[. eq $item]) &gt; 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 -1 Answer by michal kralik for How do you identify duplicate elements in an XPath 2.0 sequence ? michal kralik 2008-09-28T20:50:01Z 2008-09-28T20:50:01Z <p>What about xsl? Is it applicable to your request?</p> <pre><code> &lt;xsl:for-each select="/r/a"&gt; &lt;xsl:variable name="cur" select="." /&gt; &lt;xsl:if test="count(./preceding-sibling::a[. = $cur]) &gt; 0 and count(./following-sibling::a[. = $cur]) = 0"&gt; &lt;xsl:value-of select="." /&gt; &lt;/xsl:if&gt; &lt;/xsl:for-each&gt; </code></pre> http://stackoverflow.com/questions/133092/how-do-you-identify-duplicate-elements-in-an-xpath-2-0-sequence/149638#149638 0 Answer by thughes for How do you identify duplicate elements in an XPath 2.0 sequence ? thughes 2008-09-29T16:59:40Z 2008-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 -1 Answer by Wilfred Knievel for How do you identify duplicate elements in an XPath 2.0 sequence ? Wilfred Knievel 2008-11-05T21:50:49Z 2008-11-20T23:04:26Z <p>Given the following xml:</p> <pre><code>&lt;a&gt; &lt;b&gt;1&lt;/b&gt; &lt;b&gt;2&lt;/b&gt; &lt;b&gt;2&lt;/b&gt; &lt;b&gt;3&lt;/b&gt; &lt;b&gt;4&lt;/b&gt; &lt;b&gt;5&lt;/b&gt; &lt;b&gt;5&lt;/b&gt; &lt;b&gt;5&lt;/b&gt; &lt;b&gt;6&lt;/b&gt; &lt;b&gt;7&lt;/b&gt; &lt;/a&gt; </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#287360 4 Answer by Dimitre Novatchev for How do you identify duplicate elements in an XPath 2.0 sequence ? Dimitre Novatchev 2008-11-13T16:11:30Z 2008-11-17T20:09:08Z <p>Use this simple XPath 2.0 expression:</p> <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<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>