我有两个具有相同元素的xml配置文件。我想比较一下uri是否与他们相同。如果它们不同,我需要打印元素名称。
Doc1:
<config>
<google>
<url>google.com/api/getcoordinates</url>
</google>
<ranst>
<url>http://ranst.com/getranst</url>
<ranst>
</config>
DOC2:
<config>
<google>
<url>google.com/api/getlocationcordinates</url>
</google>
<akamai>
<url>http://akamai.com/redirectlocation/eastregion</url>
<akamai>
</config>
Document1和document2有共同的谷歌,但uri是不同的。所以我想把它说出来。我怎么能用XSLT做到这一点? 感谢。