Returns the current system date/time converted to a string according to the specified formatting styles or pattern.
These functions, effectively, are the same as the corresponding calls:
time().format()
time().format(pattern)
time().format(dateStyle, timeStyle)
dateStyle
timeStyle
For more details, see description for format(Date,...)
function.
pattern
For more details, see description for format(Date,...)
function.
dateTime("SHORT", "LONG")
dateTime("SHORT;LONG")
27/04/06 3:30:32pm
dateTime("SHORT", null)
dateTime("SHORT;")
27/04/06
dateTime(null, "LONG")
dateTime(";LONG")
3:30:32pm
dateTime("FULL", "FULL")
dateTime("FULL")
Thursday, April 12, 2006 AD, 3:30:42pm PST
dateTime("SHORT", "SHORT")
dateTime("SHORT")
dateTime()
27/04/06 3:30pm
dateTime("dd.MM.yyyy HH:mm")
27.04.2006 15:30
time(), format(Date,...)