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

RE: Maximum number of cells

Subject: RE: Maximum number of cells
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Tue, 2 Jan 2001 11:26:29 -0000
maximum number elements node xsl
Mark Dudley:
> Given the following XML:
> 
> <table>
>   <row>
>    <cell>...</cell>  
>   </row>
>   <row>
>    <cell>...</cell>
>    <cell>...</cell>
>    <cell>...</cell>
>   </row>
>   <row>
>    <cell>...</cell>
>    <cell>...</cell>
>   </row>
> </table>
> 
> I need to compare the number of cells in each row element and 
> get the count
> of cell elements in the row that has the most (3 in this 
> case). 

there's no built in max and min functions; alternatives are:

(a) sort, and find the first/last
(b) recursive template
(c) extension functions saxon:max(), saxon:min()

Doing (a), with <table> as current node:

<xsl:variable name="maxcells">
  <xsl:for-each select="row"><xsl:sort select="count(cell)"
order="descending"/>
    <xsl:if test="position()=1"><xsl:value-of
select="count(cell)"/></xsl:if>
  </xsl:for-each>
</xsl:variable>

Mike Kay

 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.