私は次のxmlを持っています:
<ns0:Root xmlns:ns0="http://root" xmlns:nm="http://notroot">
<nm:MSH>
<content>bla</content>
</nm:MSH>
<ns0:Second>
<ns0:item>aaa</ns0:item>
</ns0:Second>
<ns0:Third>
<ns0:itemb>vv</ns0:itemb>
</ns0:Third>
</ns0:Root>
それが私の期待される結果です:
<Root xmlns="http://root" xmlns:nm="http://notroot">
<nm:MSH>
<content>bla</content>
</nm:MSH>
<Second>
<item>aaa</item>
</Second>
<Third>
<itemb>vv</itemb>
</Third>
</Root>
そのマップを実行する xslt 1.0 を作成する必要があります。
私は本当にそれを行う方法がわからないので、かなり単純に思えます。
誰でも助けてもらえますか?