[Home] [By Thread] [By Date] [Recent Entries]
Ben Stover schrieb:
Assume I have a XML doc and a XSD schema file which defines mandatory and optional element fields. Recursion is free, as it is down by default. and find all elements which are optional (e.g. minoccurs=0)
but currently EMPTY.
These empty, optional elements should be stripped off so that the resulting XML does not contain them any more. Strippging is achieved by defining null template rules as follows. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="eins[not(node())]"/> <xsl:template match="zwei[not(node())]"/> <xsl:template match="drei[not(node())]"/> <xsl:template match="@*|node()"><!-- identity template -->
<xsl:copy><xsl:apply-templates select="@*|node()"/></xsl:copy>
</xsl:template></xsl:stylesheet> Michael Ludwig
|

Cart



