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

Re: XSLT 2.0/XPath 2.0 Date arithmetic

Subject: Re: XSLT 2.0/XPath 2.0 Date arithmetic
From: Andrew Franz <afranz0@xxxxxxxxxxxxxxxx>
Date: Thu, 18 May 2006 22:50:45 +1000
java date arithmetic
cknell@xxxxxxxxxx wrote:

Given a parameter, let's call it "today" in the form of this string "20060517", how do I create a variable, let's call it "tMinus1" such that it represents a day earlier than "20060517", that would be "20060516". So long as "$today" isn't the first day of a month, a simple subtraction and followed by a type cast that I don't grasp would do the trick.

What I'm looking for is guidance on date arithmetic.

Thanks.




If you're using Xalan and Java, you can always use the (non-standard) extensions.
Something along the following lines (not tested):


<?xml version="1.0" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:java="http://xml.apache.org/xalan/java"
exclude-result-prefixes="java">
...
<xsl:variable name="today">20060517</xsl:variable>
<xsl:variable name="sdf" select="java:java.text.SimpleDateFormat.new('yyyymmdd')" />
<xsl:variable name="tMinus1" select="java:format($sdf, (1000*60*60*24)+java:Long(java:parse($sdf, $today)))" />
...
</xsl:stylesheet>


See http://xml.apache.org/xalan-j/extensions.html#ext-func-calls
JavaScript is also available/possible

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.