Some examples and tips on C# DateTime formatting using string.Format() or .ToString() methods.
Standard formats are typically used when you need a fast string representation of your DateTime object based on current culture.
DateTime date = DateTime.Now;
// Short date:
string.Format("{0:d}", date) // 9/26/2023
// Long date:
string.Format("{0:D}", date) // Tuesday, September 26, 2023
// Short time:
string.Format("{0:t}", date) // 3:09 PM
// Long time:
string.Format("{0:T}", date) // 3:09:38 PM
// Full date/time (short time):
string.Format("{0:f}", date) // Tuesday, September 26, 2023 3:09 PM
// Full date/time (long time):
string.Format("{0:F}", date) // Tuesday, September 26, 2023 3:09:38 PM
// General date/time (long time):
string.Format("{0:g}", date) // 9/26/2023 3:09 PM
// General date/time (long time):
string.Format("{0:G}", date) // 9/26/2023 3:09:38 PM
// Sortable date/time:
string.Format("{0:s}", date) // 2023-09-26T15:09:38
Custom formats are useful when you need more flexibility on the output string format.
DateTime date = DateTime.Now;
string.Format("{0:MM/dd/yyyy}", date) // 09/26/2023
string.Format("{0:MMMM dd, yyyy}", date)// September 26, 2023
string.Format("{0:MMM yyyy}", date) // Sep 2023
string.Format("{0:hh:mm tt}", date) // 03:09 PM
// Year patterns:
string.Format("{0:yy yyy yyyy}", date) // 23 2023 2023
// Month patterns:
string.Format("{0:MM MMM MMMM}", date) // 09 Sep September
// Day patterns:
string.Format("{0:dd ddd dddd}", date) // 26 Tue Tuesday
// Hour
string.Format("{0:hh HH tt}", date) // 03 15 PM
// Minute, second, second fraction
string.Format("{0:mm ss ffff}", date) // 09 38 4987
When you format a DateTime with DateTime.ToString() you can also specify the culture to use.
using System.Globalization;
// ...
DateTime date = DateTime.Now;
// InvariantCulture
CultureInfo invC = CultureInfo.InvariantCulture;
date.ToString("f", invC) // Tuesday, 26 September 2023 15:09
date.ToString("d", invC) // 09/26/2023
date.ToString("t", invC) // 15:09
// German CultureInfo
CultureInfo deC = new CultureInfo("de-De");
date.ToString("f", deC) // Dienstag, 26. September 2023 15:09
date.ToString("d", deC) // 26.09.2023
date.ToString("t", deC) // 15:09
// French CultureInfo
CultureInfo frC = new CultureInfo("fr-FR");
date.ToString("f", frC) // mardi 26 septembre 2023 15:09
date.ToString("d", frC) // 26/09/2023
date.ToString("t", frC) // 15:09
// Spanish CultureInfo
CultureInfo esC = new CultureInfo("es-ES");
date.ToString("f", esC) // martes, 26 de septiembre de 2023 15:09
date.ToString("d", esC) // 26/09/2023
date.ToString("t", esC) // 15:09
Any characters not used by the formatter is reported in the result string. If you need to enter text with reserved characters that must be inserted between two ' (single quote).
DateTime date = DateTime.Now;
// Escaped date text
string.Format("{0:'y:' yyyy' m:' M 'd:' d}", date) // y: 2023 m: 9 d: 26
// Force time format to use ':' as separator ()
string.Format("{0:HH':'mm}", date) // 15:09
A simple tool for test your format string.