How i can get via Xpath distinct child nodes name that the name mached mor than one time?
if these ish the xml:
> <el>
> <name1></name1>
> <name1></name1>
> <name1></name1>
> <name2></name2>
> <name1></name1>
> <name2></name2>
> <name2></name2>
> <name3></name3> </el>
the result:
name1
name2
not the name3
Grouping by checking along the sibling axis shows quadratic (slow) behaviour, when grouping in xslt 1 it’s almost always a good idea to use a key (known as Muenchian grouping)