Re: [xsl] slicing an XML document

Subject: Re: [xsl] slicing an XML document
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 15 Oct 2002 18:43:03 +0100
> Is there a quick and dirty way to slice an XML document?

take the identity transform from the xslt spec and add
<xsl:template priority="1001" match="/*/*/*"/>

and everything below level three will be zapped.

If you want a number as a param then instead do

<xsl:template priority="1001" match="*[count(ancestor::*) &gt; $somenumber]"/>

David


_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread