Re: [xsl] How to strip off all empty elements from a XML doc?

Subject: Re: [xsl] How to strip off all empty elements from a XML doc?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 15 Oct 2009 11:00:34 +0100
. your solution does not cover nested (!) empty elements.

I'd say the problem specification was in error rather than the supplied
code, but whatever...

It appears that you want to lose any elements without non-white text
descendents.

so add

<xsl:strip-space elements="*"/>

and then change

<xsl:template match="*[not(node())]"/>

to

<xsl:template match="*[not(string(.)]"/>

David

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

Current Thread