show/hide this revision's text 3 Where they just after a list or a distinct list, who knows!

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)]
show/hide this revision's text 2 deleted 8 characters in body

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>

I think the

The following XPath should give you a list of 'unique' duplicate values:

/a/b[.=following-sibling::b][not(.=preceding-sibling::b)]

(Might need a bit of testing that though)

show/hide this revision's text 1

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>

I think the following XPath should give you a list of 'unique' duplicate values:

/a/b[.=following-sibling::b][not(.=preceding-sibling::b)]

(Might need a bit of testing that though)