我有以下输入xml。
<response>
<customers>
<customer>
<id>001</id>
<addresses>
<address>
<id>a01</id>
<street/>
</address>
<address>
<id>a02</id>
<street/>
</address>
</addresses>
</customer>
<customer>
<id>002</id>
<addresses/>
</customer>
</customers>
如果子元素地址不存在,或者它是空的(像这样(,我需要删除父元素customer。
<response>
<customers>
<customer>
<id>001</id>
<addresses>
<address>
<id>a01</id>
<street/>
</address>
<address>
<id>a02</id>
<street/>
</address>
</addresses>
</customer>
</customers>
这是我使用的xslt v 1.0,但它不起作用
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="customer[not(descendant::address[not(*)][normalize-space()])]"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
你能帮我吗?
如果要排除没有address
子体的customer
元素:
<xsl:template match="customer[not(descendant::address)]"/>
如果要排除没有address
子体和一些text()
值子体的customer
元素:
<xsl:template match="customer[not(descendant::address[normalize-space()])]"/>