输入
<person>
<address>
<city>NY</city>
<state></state>
<country>US</country>
</address>
<other>
<gender></gender>
<age>22</age>
<weight/>
</other>
</person>
我只想从“其他”节点中删除空元素,“其他”下的标签也不固定。
输出
<person>
<address>
<city>NY</city>
<state></state>
<country>US</country>
</address>
<other>
<age>22</age>
</other>
</person>
我是 xslt 的新手,所以请帮忙..