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

RE: How do you get the most recent element?

Subject: RE: How do you get the most recent element?
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Fri, 9 Feb 2001 18:09:06 -0000
RE:  How do you get the most recent element?
> I need to display the most recent "note". I did something
> like shown below.
> I'm concerned that the match will go through all the sorted notes even
> though I
> only want the most recent. Thought there might be a more
> elegant solution out there.
>
>
>   <xsl:apply-templates select="note">
>     <xsl:sort order="descending" select="time"/>
>   </xsl:apply-templates>
>
>
> <xsl:template match="note">
>   <xsl:if test="position()=1">
>     <xsl:value-of select="text"/>
>   </xsl:if>
> </xsl:template>
>
Actually, the sort will probably take longer than processing the sorted list
and discarding elements you're not interested in, so for an improvement you
want to avoid the sort.

If you want to do a single pass through the data, it's a case for a
recursive template or an extension function such as saxon:highest().

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.