This version is out of date, covering development from v9.0.0 to v9.3.0. It is maintained here only for inbound reference links from elsewhere. It is no longer actively updated.

Jump to the current version of aTbRef

Tinderbox v9 Icon

Date-time operators

Date accessors and manipulator operators are available for rules and actions:

The action code method to format a date string is to call the various date-related operators.

Date examples:

date(2004,7,23,16,45) …is 23 July 2004 16:45 

If $Date is July 4, 2009 then

day($Date) …is 4

If $Date is July 4,2009, then

$Date=day($Date,5) 

will change $Date to July 5, 2009.

If $Date is July 4, 2009 then

month($Date) …is 7

If $Date is July 4,2009, then

$Date=month($Date,5) 

will change $Date to May 4, 2009.