This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Compare Dates


> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Michael Kay
> Sent: Tuesday, June 12, 2001 11:55 AM
> To: xsl-list@lists.mulberrytech.com
> Subject: RE: [xsl] Compare Dates
>
>
> > I want to compare two dates to find out which comes first.
> > 2000-12-19
> > What I donīt want to do is to compare each number, if I validate the
> > formate is there a XSL function to see which date comes first??????
>
> If the dates are in ISO format just strip the hyphens and compare as
> numbers:
>
> xsl:if test="translate($date1, '-', '') < translate($date2, '-', '')"

Note however that this won't work properly if the ISO date contains trailing
time zone information...


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]