使用xslt复制具有属性的Only Root元素

时间:2016-10-06 10:11:06

标签: xml xslt-2.0

输入:

 <?xml version="1.0" encoding="utf-8"?>
    <root attribute1="attribute1" attribute2="attribute2" attribute3="attribute3">
        <child1>
            <grandchild1>xxx1</<grandchild1>
            <grandchild2>xxx2</<grandchild2>        
        </child1>
        .   
        <child1000>
        </child1000>
    </root>

输出:

<?xml version="1.0" encoding="utf-8"?>
<root attribute1="attribute1" attribute2="attribute2" attribute3="attribute3">

</root>

我只希望root元素具有所有属性。 ***提供的根节点上的属性数量不固定。

0 个答案:

没有答案