Is there a less then kludgey way of finding the difference in days between 2 dates in xslt? If so can you point me in the right direction. I am receiving dates in the format of mm/dd/yyyy.
|
feedback
|
|
Use XSLT 2.0 (XPath 2.0) for this:
when this transformation is applied on the following XML document:
the wanted, correct result (the difference is 450 days) is produced:
| |||
|
feedback
|
|
A nicer (and shorter) alternative for XSLT 1.0 is to compute the equivalent Julian dates and subtract them. Template:
Usage:
Repeat for the second date and you'll have two integers. Then, simply subtract them. | |||
|
feedback
|
date:differenceimplemented by Jeni Tennison at exslt.org/date/functions/difference/… – user357812 Apr 4 '11 at 22:42