xsl-list
[Top] [All Lists]

Re: slicing an XML document

2002-10-15 14:16:26
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



<Prev in Thread] Current Thread [Next in Thread>