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: Wed, 7 Oct 2009 14:59:46 +0100
use an identiity template (see the xslt spec or google or the faq) and
add a template that dosen't copy empty elements:

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

Then empty elements won't be copied to the output.

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