How to Convert and Sort Dates in XSL : Small Tip..

Sometimes small things comes pretty handy. Like this one;

Scenario : Pick the biggest date from the list of dates.



Solution:


Assume your input XML is something like this (Date format is YYYYMMDDTHH:MM:SS)

<DateList>

<Date>20040931T18:31:04</Date> <Date>20040831T18:31:04</Date> <Date>20040715T18:31:04</Date> <Date>20041223T18:31:04</Date>

</DateList>

XSL file



<?xml version=”1.0″ encoding=”UTF-8″?>

<xsl:stylesheet version=”1.0″ xmlns:xsl=”http://www.w3.org/1999/XSL/Transform;

<xsl:template match=”/”>

<xsl:for-each select=”DateList/Date”>

<xsl:sort order=”ascending” select=”translate(.,’T::’, ‘,’)”/>

<xsl:if test=”position() = last()”>

<xsl:value-of select=”.”/>

</xsl:if>

</xsl:for-each>

</xsl:template>

</xsl:stylesheet>





This will print output as

20041223T18:31:04



This is biggest date. you can also print the date in a different format.

Happy XSLTingggg!!..

Comments

4 Responses to “How to Convert and Sort Dates in XSL : Small Tip..”

  1. final fantasy 10 2 cheatbf on October 19th, 2005 2:26 am

    Exciting blog. Your site was amazing and will be
    back again! I never get tired of looking for blogs
    just like this one.
    Come as you are and look at my 3220 nokia shell wave blog.

  2. job opportunitya on December 2nd, 2005 6:31 am

    Awesome blog. I’m loving the site and I have to
    return there soon! Going online, when I have the time,
    I look for blogs close to your work!
    Stop by and look at my male plastic surgery blog site.

  3. job opportunitya on December 14th, 2005 3:02 pm

    Excellent blog.  I go though the web in search of
    blogs like this one. Its so good, that I plan on
    returning to its site!
    I know that you love my work so, look up my disapointments plastic surgery blog.

  4. after-glow on January 31st, 2006 3:26 pm

    Awesome blog. I’m loving the site and I have to
    return there soon! Going online, when I have the time,
    I look for blogs close to your work!
    No matter when you are, just stop by and check for my advance america cash advance center blog site.

Leave a Reply