|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Maximum number of cells
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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








