Re: [xsl] [XSLT 1.0] How to remove CDATA sections?

Subject: Re: [xsl] [XSLT 1.0] How to remove CDATA sections?
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 30 Jun 2010 22:50:38 +0100
On 30/06/2010 18:56, Costello, Roger L. wrote:
This is just one example. I would like the XSLT program to remove all CDATA sections in any XML document. Is there a way to do it?

there are no CDATA sections after the input has been parsed so XSLT doesn't see them. perhaps you just want to remove all text nodes from ,
weather, which woul dbe an identity template plus the template
<xsl:template match="Weather/text()"/>


Current Thread