需要xslt以获得下面的预期输出xml。
我的输入:
<accounts>
<Customer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="text_type" name="customername"><value></value></Customer>
<Customer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="text_type" name="customernumber"><value>101</value></Customer>
</accounts>
预期输出:
<accounts>
<Customer xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="text_type" name="customernumber">
<value>101</value>
</Customer>
</accounts>