Formatting Dates
The date format type is supported with the styles short, medium, long, and full.
Format Style | Message Example | Result Example (en-US) |
---|---|---|
short |
{0,date,short}
|
'1995-12-17T03:24:12' → "12/17/1995"
|
medium |
{0,date,medium}
|
'1995-12-17T03:24:12' → "Dec 17, 1995"
|
long |
{0,date,long}
|
'1995-12-17T03:24:12' → "December 17, 1995"
|
full |
{0,date,full}
|
'1995-12-17T03:24:12' → "Sunday, December 17, 1995"
|