Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


RE: [xsl] First Element in Sorted List

From: "Andrew Welch" <ajwelch@--------------->
To:
Date: 6/1/2005 2:19:00 PM
> I am hoping to to confirm something before going in the wrong
> direction.
>
> My process needs to take action on the first element in a list of
> elements where the logic to determine first is the lowest
> numeric value
> of the sortorder attribute.  I don't believe there is a
> one-line way to
> do this - I believe the entire list must be sorted, and then the
> position of each element after sort compared to determine if
> it is first.
>
> Is there a shorter/less expensive way to code the following
>
> <xsl:for-each select="item">
>    <xsl:sort select="@sortorder" data-type="number" />
>    <xsl:if test="position() = 1">
>      <!-- this is the first element in the sorted list -->
>    </xsl:if>
> </xsl:for-each>
>
> I searched and found examples using this technique, but
> nothing really
> saying that this was the best or only approach.

Yes, in 1.0 that's the best way.  You could use an extension function if
portability isn't an issue, such as exslt's math:min().

2.0 has the min() function inbuilt (if you are using Saxon you can
pick-and-choose(TM) the features of 2.0 you want and use them in your
1.0 stylesheet).

cheers
andrew


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent