Wolfram Language

Units & Dates

Extensive Date Formats

Get a DateString object with a common date format.

In[1]:=
Click for copyable input
DateString[]
Out[1]=

Get a date using the ISO-8601 date-time format.

In[2]:=
Click for copyable input
DateString["ISODateTime"]
Out[2]=

Interpret a date string as an ISO-8601 ordinal-date format.

In[3]:=
Click for copyable input
DateObject[{"2012-184", {"ISOOrdinalDate"}}]
Out[3]=

Get a DateObject expression with the ISO-8601 week-date format.

In[4]:=
Click for copyable input
DateObject[DateFormat -> "ISOWeekDate"]
Out[4]=

Make a date object with a custom date format.

In[5]:=
Click for copyable input
DateObject[{2014, 8, 4}, DateFormat -> {"DayName", " ", "MonthName", " ", "Day", ", ", "YearRomanNumeral"}]
Out[5]=

Dozens of different date format elements are available.

show complete Wolfram Language input
In[6]:=
Click for copyable input
flist = {"Date", "DateShort", "Time", "DateTime", "DateTimeShort", "ISODate", "ISOWeekDate", "ISOOrdinalDate", "ISODateTime", "ADBC", "CEBCE", "Year", "YearShort", "ISOYear", "YearRomanNumeral", "YearUnsigned", "QuarterName", "QuarterNameShort", "Quarter", "MonthName", "MonthNameShort", "MonthNameInitial", "Month", "MonthShort", "MonthRomanNumeral", "MonthRomanNumeralLowerCase", "Week", "WeekShort", "DayName", "DayNameShort", "DayNameInitial", "ISOWeekDay", "Day", "DayShort", "ISOYearDay", "ISOYearDayShort", "Hour", "Hour12", "Hour24", "HourShort", "Hour12Short", "Hour24Short", "AMPM", "AMPMLowerCase", "TimeZoneGMTRelative", "ISOTimeZOne", "TimeZoneName", "TimeZoneNameShort", "Minute", "MinuteShort", "Second", "SecondShort", "SecondExact", "Millisecond", "MillisecondShort"}; Rasterize[ Grid[Map[Pane[ Style[# /. Last[flist] -> "Custom", ScriptLevel -> 0], {300}] &, Join[{{"Date String Format", DateObject[{2016, 2, 9}]}}, Transpose[{flist, Map[DateString[{2016, 2, 9, 14, 8, 4.2301}, #] &, flist]}]], {2}], Dividers -> All, Spacings -> {2, 2}, Background -> {None, {{None, GrayLevel[.9]}}, {{1, 1} -> Hue[.6, .4, 1], {1, 2} -> Hue[.6, .4, 1]}}, BaseStyle -> {FontFamily -> Times, FontSize -> 13}] // TraditionalForm, ImageResolution -> 144, RasterSize -> 600, ImageSize -> 300]
Out[6]=

Related Examples

de es fr ja ko pt-br ru zh