Specifying Date Formats
The DateTimeZone class uses the DateTimeFormatter for converting a date to text (formatting) and converting text to a date (parsing).
These conversion are based on patterns. uuuu/MM/dd HH:mm:ss,SSS i
for example: 2023/03/02 15:45:44,998 Europe/Berlin
DateTimeFormatter | Meaning | Presentation | DateTimeFormatter Examples |
---|---|---|---|
G | Era designator | Text | G - AD |
u | Year | Year | u , uuu , uuuu - 2023uu - 23uuuuu - 02023 |
y | Year of era | Number | y , yyy , yyyy - 2023yy - 23yyyyy - 02023 |
D | Day in year | Number | D ,DD - 61DDD - 061 |
M/L | Month in year | Number/Text | M - 3MM - 03MMM , MMMM - MarMMMMM - ML - 3LL - 03LLL , LLLL - MarLLLLL - M |
d | Day in month | Number | d - 2dd - 02 |
g | modified-julian-day | Number | g - 60005 |
Q/q | quarter-of-year | number/text | q - 1 qq - 01 qqq - Q1 qqqq - 1st quarterqqqqq - 1Q - 1 QQ - 01 QQQ - Q1 QQQQ - 1st quarterQQQQQ - 1 |
Y | week-based-year | year | Y , YYY , YYYY - 2023YY - 23YYYYY - 02023 |
w | Week in year | Number | w - 9ww - 09 |
W | Week in month | Number | W - 1 |
E | Day in week | Text | E , EE , EEE - ThuEEEE - Thursday |
e/c | Day number in week (Sunday is 1) | Number | e - 5 (Thursday)c - 5 (Thursday) |
F | Day of week in month | Number | F - 2 |
a | AM/PM marker | Text | a - PM |
B | period-of-day | Text | B - in the afternoon |
h | Hour in AM/PM (1-12) | Number | h - 3hh - 03 |
K | Hour in AM/PM (0-11) | Number | K - 3KK - 03 |
k | Hour in day (1-24) | Number | k - 15kk - 15 |
H | Hour in day (0-23) | Number | H - 15HH - 15 |
m | Minute in hour | Number | m , mm - 45 |
s | Second in minute | Number | s , ss - 44 |
S | Millisecond | Number | S - 9SS - 99SSS - 998 |
A | millisecond in day | Number | A - 56744998 |
n | nano of second | Number | n - 998000000 |
N | nano of day | Number | N - 56744998000000 |
V | time-zone ID | Text | VV - Europe/Berlin |
v | time-zone ID | General time zone | v - CET |
z | Time zone | General time zone | z , zz , zzz - CETzzzz - Central European Standard Time |
O | localized zone offset | offset-O | O - GMT+1 |
X | Time zone | ISO 8601 time zone | X - +01XX , XXX , XXXX , XXXXX - +01:00 |
Z | Time zone | RFC 822 time zone | Z - +0100ZZ , ZZZ - +0100ZZZZ - GMT+01:00ZZZZZ - +01:00 |
i | Olson time zone | Text | i - Europe/Berlin |
' | Quoting | Text, must be duplicated to escape | '' - ''some text' - some text |
{<locale>} | Prefix locale to use for the text elements of the date. | text | {de} uuuuMMdd EEEE - 20230302 Donnerstag{fr} E - Mar |
Escaping
To insert text in a date format, you specify '<text>'
, to insert a '
in the date format, you escape it with an '
, so ''
will be formatted as '
. Note that if you are using REL, you must escape each '
with a \
. You escape all literal characters you wish to insert into the date format.
Example
The given date and time are 2023-10-02 12:08:56 local time in the US Pacific Time time zone.
Java SimpleDateFormat | Result |
---|---|
uuuu.MM.dd G 'at' HH:mm:ss z | 2023.07.04 AD at 12:08:56 PDT |
EEE, MMM d, ''yy | Mon, Oct 02, '23 |
EEE, MMM d, ''uu | Wed, Jul 4, '23 |
EEE, MMM d, ''yy | Wed, Jul 4, '23 |
h:mm a | 12:08 PM |
hh 'o''clock' a, zzzz | 12 o'clock PM, Pacific Daylight Time |
K:mm a, z | 0:08 PM, PDT |
yyyyy.MMMMM.dd GGG hh:mm a | 2023.Oct.02 AD 12:08 PM |
{en} EEE, d MMM yyyy HH:mm:ss Z | Mon, 02 Oct 2023 12:08:56 -0700 |
{fr} EEE, d MMM yyyy HH:mm:ss Z | lun., 02 oct. 2023 12:08:56 -0700 |
yyMMddHHmmssZ | 231002120856-0700 |
yyyy-MM-dd'T'HH:mm:ss.SSSZ | 2023-10-02T12:08:56.235-0700 |
yyyy-MM-dd'T'HH:mm:ssXXX | 2023-10-02T12:08:56-07:00 |
yyyy-'W'ww-e | 2023-W27-3 |
MM/dd/yyyy hh:mm:ss VV | 07/04/2023 12:08:56 America/Los Angeles |
=Time.format(Time.now('Europe/Paris'), 'dd/MM/uuuu hh:mm:ss i') | 02/10/2023 21:08:56 Europe/Paris |
=Time.format(Time.now('America/Los Angeles'), 'yyyyMMddHHmm') | 202310021208 |
=Time.format(Time.now('America/Los Angeles'), 'yyyy.MM.dd.HH-mm-ss') | 2023.10.02.12-08-56 |
=Time.format(Time.now('America/Los Angeles'), 'EEE-dd-MM-yy') | Mon-02-10-23 |
=Time.format(Time.now('America/Los Angeles'), 'hmma') | 1208PM |
=Time.format(Time.now('Europe/Paris'), 'dd MM \'\'yy hh:mm:ss VV') | 02 10 '23 21:08:56 Europe/Paris |
Important Changes in 9.2.9 and Later
The Java SimpleDateFormat class was used to format and parse DateTimeZone objects up until version 9.2.8 (inclusive). An example for a dynamic date using Java SimpleDateFormat would be the following:
=Time.format(Time.now('America/Los Angeles'),'yyyyMMdd')
This would be safest to specify as =Time.format(Time.now('America/Los Angeles'),'uuuuMMdd')
to correctly account for leap years.
You can also use the Time.format()
REL function as follows, note that it also accepts the i
to included the time zone:
=Time.format(Time.now('America/Los Angeles'), 'dd/MM/yyyy HH:mm:ss i')
Result:
2023/10/02 11:08:20 Europe/Paris
That would be expressed as the following with DateTimeFormatter
=Time.format(Time.now('America/Los Angeles'), 'dd/MM/uuuu HH:mm:ss i')
Result:
2023/10/02 11:08:20 Europe/Paris
note
The yyyy
does not always account for leap years, for example when STRICT
parsing is used. The uuuu
syntax is recommended.
The following table lists all valid letters that can be used to form a pattern which represents the date format.
The current date is: 2023/03/02 15:45:44,998 Europe/Berlin (yyyy/MM/dd HH:mm:ss,SSS i
)
SimpleDateFormat | DateTimeFormatter | Meaning | Presentation | DateTimeFormatter Examples |
---|---|---|---|---|
u | Year | Year | u , uuu , uuuu - 2023uu - 23uuuuu - 02023 | |
u | e/c | Day number in week (Sunday is 1) | Number | e - 5 (Thursday)c - 5 (Thursday) |
Important Differences
- Superfluous repetitions of letters cause exceptions.
- You must escape all literal characters in the format.
u
is no longer day number of week but year, usee
orc
instead.- Use of
u
instead ofy
is recommended to cater for leap years.
Example of superfluous repetitions
{
String DATE_FORMAT = "EEE, MMM d, hh:mm:ss aa";
DateTimeZone dtz = new DateTimeZone();
String creationTime = dtz.toFormattedString(DATE_FORMAT);
jcsOut.println(creationTime);
}
In verion 9.2.8 and lower, the above worked, notice the aa
(repetition is superfluous, here, as a
would have worked as well). This does not work in 9.2.9 and later.