Re: [xsl] a Real Quickie

Subject: Re: [xsl] a Real Quickie
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 21 Sep 2004 16:48:17 +0100
> I have an xml file, and I want to strip all of tags with the node ME if they 

XSLT has no access to tags in the file (only to nodes derived from those
tags). 

Copy the identity transform from the XSLT spec or the FAQ for this
list, then add one extra tenmplate that doesn't copy empty ME nodes:

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

David

PS the useability of the archives of this list is improved if subject
lines give a hint of the subject.

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread