Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
744 views
in Technique[技术] by (71.8m points)

xslt - count of duplicate xml nodes

i am using xmllint (xslt 1.0) to query documents for nodes having count > 1. based on the below, i want to get the make nodes where the value occurs more than one time (Ford and Chevy). Seeing the count would be ideal too :)

<cars>
  <car>
    <make>Ford</make><model>Tempo</model>
  </car>
  <car>
    <make>Ford</make><model>Mustang</model>
  </car>
  <car>
    <make>Chevy</make><model>Malibu</model>
  </car>
  <car>
    <make>Chevy</make><model>Camaro</model>
  </car>
  <car>
    <make>Honda</make><model>CRV</model>
  </car>
</cars>
question from:https://stackoverflow.com/questions/65835670/count-of-duplicate-xml-nodes

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

XPath 2.0 and later.

for $node in distinct-values(/cars/car/make) 
return if (count(/cars/car[make = $node]) > 1) then concat($node," : ", count(/cars/car[make = $node]))
else ()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...