Syntax: |
<date>(Format, Separator,
DayLZ, MonthLZ, Shift)
|
|
Format |
The format index (the first format has index 0). |
Separator |
Separator character: .,/- etc. |
|
|
DayLZ |
If 1, the day is displayed with leading zero (e.g., 02). If 0, the day is displayed
without leading zero (e.g., 2). |
|
|
MonthLZ |
If 1, the month is displayed with leading zero (e.g., 09). If 0, the month is
displayed without leading zero (e.g., 9). |
|
|
Shift |
The date shift in days relative to the current date. 0 for no shift (today's date),
-1 for date one day back (yesterday), +1 for date one day later (tomorrow), etc. |
|
Example: |
Current date is:
<date>(1,"/",1,1,0)<enter>Current date is:
<date>(10,"/",1,1,0)<enter>Yesterday:
<date>(1,"/",1,1,-1) |