Subject: Re: slicing an XML document
From: Saverio Perugini <sperugin@xxxxxxxxxxxxxxxx>
Date: Tue, 15 Oct 2002 17:16:26 -0400 (EDT)
|
On Tue, 15 Oct 2002, Wendell Piez wrote:
> You could do something like:
>
> <xsl:param name="depth" select="3"/>
>
> <xsl:template match="/">
> <xsl:for-each select="//*[count(ancestor-or-self::*) = $depth]">
> <xsl:copy/>
> </xsl:for-each>
> </xsl:template>
>
> This doesn't de-duplicate the list however (that's a little fancier).
Any insight into how I might go about de-duplicating the list?
Is a unique() function available in any extensions?
Thank You and Best Regards,
S. Perugini
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|