使用XSLT删除XML空标签

时间:2018-08-13 13:38:27

标签: xslt

需要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>

0 个答案:

没有答案