两个文档中相同元素的URI - 样式表

时间:2017-12-07 04:15:05

标签: xslt

我有两个具有相同元素的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做到这一点? 感谢。

0 个答案:

没有答案