Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
777 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 Reply

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 ()

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...