Monday, April 8, 2013

Use preceding-sibling to find all unique elements

Recently I need to write a xpath expression to find all unique elements from one XML message.  The below is the simplified XML document that demonstrate the problem to be solved.  Here I want to get a list of all unique of all a elements.  The of values in the result list should be 123, 120, 129,345 and 340.

  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!--Sample XML file generated by XMLSpy v2008 sp1 (http://www.altova.com)-->
  4.  
  5. <db:p>
  6.  
  7. <db:ss>
  8.  
  9. <db:tt>
  10.  
  11. <db:a>123</db:a>
  12.  
  13. <db:a>120</db:a>
  14.  
  15. </db:tt>
  16.  
  17. <db:tt>
  18.  
  19. <db:a>123</db:a>
  20.  
  21. <db:a>129</db:a>
  22.  
  23. </db:tt>
  24.  
  25. </db:ss>
  26.  
  27. <db:ss>
  28.  
  29. <db:tt>
  30.  
  31. <db:a>345</db:a>
  32.  
  33. <db:a>120</db:a>
  34.  
  35. <db:a>123</db:a>
  36.  
  37. <db:a>340</db:a>
  38.  
  39. </db:tt>
  40.  
  41. </db:ss>
  42.  
  43. </db:p>
  44.  

After some tries I come out with the following xpath expression.

  1. /*:p/*:ss/*:tt/*:a[ not(. = ../preceding-sibling::*/*:a)  and not(. =  ../../preceding-sibling::*/*:tt/*:a)]

Here I use two preceding-sibling because <a> element is under <ss> and <tt> elements.