xsl-list
[Top] [All Lists]

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

2010-06-30 16:56:55
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()"/>


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--