ASP Error: 70
Description: Permission denied
Source: Microsoft VBScript runtime error

[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: calculate depth of an xml-tree

Subject: Re: calculate depth of an xml-tree
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Tue, 22 Apr 2003 14:54:02 +0300
calculate tree depth
Florian Bauer wrote:

and now my 2nd (and hopefully last) question for today ...

I have to write an xsl file, which calculates the maximal depth of an input xml file.

<abc>
    <cde>
        <efg/>
        <asd/>
    </cde>
    <aaa/>
</abc>

=> maxdepth = 3 ....

I think I have to use a "for each" with sorting and increment a variable, but I don't know how to do this (you see, I'm a big noob @ xml/xsl :( ... )
Forget about incrementing a variable, there is no such thing in XSLT.
Sort all elements by number of ancestors and take the first one.
<xsl:template match="/">
<xsl:for-each select="//*">
<xsl:sort select="count(ancestor::*)" data-type="number" order="descending"/>
<xsl:if test="position() = 1">
<xsl:value-of select="count(ancestor::*)+1"/>
</xsl:if>
</xsl:for-each>
</xsl:template>


--
Oleg Tkachenko
http://www.tkachenko.com/blog
Multiconn Technologies, Israel


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



Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.