Given the following xml:
<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>
The following XPath should will give you a list of 'unique' duplicate repeating values :
/a/b[.=following-sibling::b][not(.=preceding-sibling::b)]
(Might need in this case 2, 5, 5)
/a/b[.=following-sibling::b]
However if you wanted a bit distinct list of testing that thoughrepeating values (in this case 2, 5) then the following XPath should do the business for you:
/a/b[.=following-sibling::b][not(.=preceding-sibling::b)]
