Iso Time Format String

Iso Time Format String Average ratng: 3,9/5 1909 votes

In parsing operations, custom date and time format strings can be used with the DateTime.ParseExact, DateTime.TryParseExact, DateTimeOffset.ParseExact, and DateTimeOffset.TryParseExact methods. These methods require that an input string conforms exactly to a particular pattern for the parse operation to succeed. The toISOString method returns a string in simplified extended ISO format (ISO 8601), which is always 24 or 27 characters long (YYYY-MM-DDTHH:mm:ss.sssZ or ±YYYYYY-MM-DDTHH:mm:ss.sssZ, respectively). The timezone is always zero UTC offset, as denoted by the suffix 'Z'. The International Organization for Standardization (ISO) date format is a standard way to express a numeric calendar date that eliminates ambiguity. For example, North Americans usually write the month before the date.

The International Organization for Standardization (ISO) date format is a standard way to express a numeric calendar date that eliminates ambiguity. For example, North Americans usually write the month before the date. Europeans write the date before the month as in '30.3.1998' for March 30, 1998. The separators used between numbers also vary between countries. The question of how to express a date in numbers that precedes '1/1/1' also arises (how to express a date that is 'B.C.'). ISO 8601 provides a standard cross-national approach that says:

  • A general-to-specific approach, forming a date that is easier to process - thus, the year first, followed by month, then day
  • With each separated by a hyphen ('-')
  • Numbers less than 10 preceded by a leading zero
  • Years expressed as '0' prior to year 1 and as '-1' for the year prior to year 0 (and so forth)
Thus, March 30, 1998 would be: 1998-03-30.

To express whether the date reflects the Julian calendar or the Gregorian calendar , the date can be followed with a 'J' or a 'G'.

-->Format

A date and time format string defines the text representation of a DateTime or DateTimeOffset value that results from a formatting operation. It can also define the representation of a date and time value that is required in a parsing operation in order to successfully convert the string to a date and time. A custom format string consists of one or more custom date and time format specifiers. Any string that is not a standard date and time format string is interpreted as a custom date and time format string.

Iso Date Time Format String

In Python the isoformat method of datetime class returns the date-time string with the specified separator. If no separator is specified space is printed. # Print CST in ISO format - date time separator is a '#' symbol # and time format specifier as auto. Date and time formats are specified by date and time pattern strings. Within date and time pattern strings, unquoted letters from 'A' to 'Z' and from 'a' to 'z' are interpreted as pattern letters representing the components of a date or time string. It produces the string representation of a TimeSpan value that is invariant and that is common to all previous versions of the.NET Framework before the.NET Framework 4. 'c' is the default TimeSpan format string; the TimeSpan.ToString method formats a time interval value by using the 'c' format string.

Tip

You can download the Formatting Utility, a .NET Core Windows Forms application that lets you apply format strings to either numeric or date and time values and displays the result string. Source code is available for C# and Visual Basic.

Custom date and time format strings can be used with both DateTime and DateTimeOffset values.

Note

Some of the C# examples in this article run in the Try.NET inline code runner and playground. Select the Run button to run an example in an interactive window. Once you execute the code, you can modify it and run the modified code by selecting Run again. The modified code either runs in the interactive window or, if compilation fails, the interactive window displays all C# compiler error messages.

The local time zone of the Try.NET inline code runner and playground is Coordinated Universal Time, or UTC. This may affect the behavior and the output of examples that illustrate the DateTime, DateTimeOffset, and TimeZoneInfo types and their members.

In formatting operations, custom date and time format strings can be used either with the ToString method of a date and time instance or with a method that supports composite formatting. The following example illustrates both uses.

In parsing operations, custom date and time format strings can be used with the DateTime.ParseExact, DateTime.TryParseExact, DateTimeOffset.ParseExact, and DateTimeOffset.TryParseExact methods. These methods require that an input string conforms exactly to a particular pattern for the parse operation to succeed. The following example illustrates a call to the DateTimeOffset.ParseExact(String, String, IFormatProvider) method to parse a date that must include a day, a month, and a two-digit year.

The following table describes the custom date and time format specifiers and displays a result string produced by each format specifier. By default, result strings reflect the formatting conventions of the en-US culture. If a particular format specifier produces a localized result string, the example also notes the culture to which the result string applies. For more information about using custom date and time format strings, see the Notes section.

Format specifierDescriptionExamples
'd'The day of the month, from 1 through 31.
More information: The 'd' Custom Format Specifier.
2009-06-01T13:45:30 -> 1
2009-06-15T13:45:30 -> 15
'dd'The day of the month, from 01 through 31.
More information: The 'dd' Custom Format Specifier.
2009-06-01T13:45:30 -> 01
2009-06-15T13:45:30 -> 15
'ddd'The abbreviated name of the day of the week.
More information: The 'ddd' Custom Format Specifier.
2009-06-15T13:45:30 -> Mon (en-US)
2009-06-15T13:45:30 -> Пн (ru-RU)
2009-06-15T13:45:30 -> lun. (fr-FR)
'dddd'The full name of the day of the week.
More information: The 'dddd' Custom Format Specifier.
2009-06-15T13:45:30 -> Monday (en-US)
2009-06-15T13:45:30 -> понедельник (ru-RU)
2009-06-15T13:45:30 -> lundi (fr-FR)
'f'The tenths of a second in a date and time value.
More information: The 'f' Custom Format Specifier.
2009-06-15T13:45:30.6170000 -> 6
2009-06-15T13:45:30.05 -> 0
'ff'The hundredths of a second in a date and time value.
More information: The 'ff' Custom Format Specifier.
2009-06-15T13:45:30.6170000 -> 61
2009-06-15T13:45:30.0050000 -> 00
'fff'The milliseconds in a date and time value.
More information: The 'fff' Custom Format Specifier.
6/15/2009 13:45:30.617 -> 617
6/15/2009 13:45:30.0005 -> 000
'ffff'The ten thousandths of a second in a date and time value.
More information: The 'ffff' Custom Format Specifier.
2009-06-15T13:45:30.6175000 -> 6175
2009-06-15T13:45:30.0000500 -> 0000
'fffff'The hundred thousandths of a second in a date and time value.
More information: The 'fffff' Custom Format Specifier.
2009-06-15T13:45:30.6175400 -> 61754
6/15/2009 13:45:30.000005 -> 00000
'ffffff'The millionths of a second in a date and time value.
More information: The 'ffffff' Custom Format Specifier.
2009-06-15T13:45:30.6175420 -> 617542
2009-06-15T13:45:30.0000005 -> 000000
'fffffff'The ten millionths of a second in a date and time value.
More information: The 'fffffff' Custom Format Specifier.
2009-06-15T13:45:30.6175425 -> 6175425
2009-06-15T13:45:30.0001150 -> 0001150
'F'If non-zero, the tenths of a second in a date and time value.
More information: The 'F' Custom Format Specifier.
2009-06-15T13:45:30.6170000 -> 6
2009-06-15T13:45:30.0500000 -> (no output)
'FF'If non-zero, the hundredths of a second in a date and time value.
More information: The 'FF' Custom Format Specifier.
2009-06-15T13:45:30.6170000 -> 61
2009-06-15T13:45:30.0050000 -> (no output)
'FFF'If non-zero, the milliseconds in a date and time value.
More information: The 'FFF' Custom Format Specifier.
2009-06-15T13:45:30.6170000 -> 617
2009-06-15T13:45:30.0005000 -> (no output)
'FFFF'If non-zero, the ten thousandths of a second in a date and time value.
More information: The 'FFFF' Custom Format Specifier.
2009-06-15T13:45:30.5275000 -> 5275
2009-06-15T13:45:30.0000500 -> (no output)
'FFFFF'If non-zero, the hundred thousandths of a second in a date and time value.
More information: The 'FFFFF' Custom Format Specifier.
2009-06-15T13:45:30.6175400 -> 61754
2009-06-15T13:45:30.0000050 -> (no output)
'FFFFFF'If non-zero, the millionths of a second in a date and time value.
More information: The 'FFFFFF' Custom Format Specifier.
2009-06-15T13:45:30.6175420 -> 617542
2009-06-15T13:45:30.0000005 -> (no output)
'FFFFFFF'If non-zero, the ten millionths of a second in a date and time value.
More information: The 'FFFFFFF' Custom Format Specifier.
2009-06-15T13:45:30.6175425 -> 6175425
2009-06-15T13:45:30.0001150 -> 000115
'g', 'gg'The period or era.
More information: The 'g' or 'gg' Custom Format Specifier.
2009-06-15T13:45:30.6170000 -> A.D.
'h'The hour, using a 12-hour clock from 1 to 12.
More information: The 'h' Custom Format Specifier.
2009-06-15T01:45:30 -> 1
2009-06-15T13:45:30 -> 1
'hh'The hour, using a 12-hour clock from 01 to 12.
More information: The 'hh' Custom Format Specifier.
2009-06-15T01:45:30 -> 01
2009-06-15T13:45:30 -> 01
'H'The hour, using a 24-hour clock from 0 to 23.
More information: The 'H' Custom Format Specifier.
2009-06-15T01:45:30 -> 1
2009-06-15T13:45:30 -> 13
'HH'The hour, using a 24-hour clock from 00 to 23.
More information: The 'HH' Custom Format Specifier.
2009-06-15T01:45:30 -> 01
2009-06-15T13:45:30 -> 13
'K'Time zone information.
More information: The 'K' Custom Format Specifier.
With DateTime values:
2009-06-15T13:45:30, Kind Unspecified ->
2009-06-15T13:45:30, Kind Utc -> Z
2009-06-15T13:45:30, Kind Local -> -07:00 (depends on local computer settings)
With DateTimeOffset values:
2009-06-15T01:45:30-07:00 --> -07:00
2009-06-15T08:45:30+00:00 --> +00:00
'm'The minute, from 0 through 59.
More information: The 'm' Custom Format Specifier.
2009-06-15T01:09:30 -> 9
2009-06-15T13:29:30 -> 29
'mm'The minute, from 00 through 59.
More information: The 'mm' Custom Format Specifier.
2009-06-15T01:09:30 -> 09
2009-06-15T01:45:30 -> 45
'M'The month, from 1 through 12.
More information: The 'M' Custom Format Specifier.
2009-06-15T13:45:30 -> 6
'MM'The month, from 01 through 12.
More information: The 'MM' Custom Format Specifier.
2009-06-15T13:45:30 -> 06
'MMM'The abbreviated name of the month.
More information: The 'MMM' Custom Format Specifier.
2009-06-15T13:45:30 -> Jun (en-US)
2009-06-15T13:45:30 -> juin (fr-FR)
2009-06-15T13:45:30 -> Jun (zu-ZA)
'MMMM'The full name of the month.
More information: The 'MMMM' Custom Format Specifier.
2009-06-15T13:45:30 -> June (en-US)
2009-06-15T13:45:30 -> juni (da-DK)
2009-06-15T13:45:30 -> uJuni (zu-ZA)
's'The second, from 0 through 59.
More information: The 's' Custom Format Specifier.
2009-06-15T13:45:09 -> 9
'ss'The second, from 00 through 59.
More information: The 'ss' Custom Format Specifier.
2009-06-15T13:45:09 -> 09
't'The first character of the AM/PM designator.
More information: The 't' Custom Format Specifier.
2009-06-15T13:45:30 -> P (en-US)
2009-06-15T13:45:30 -> 午 (ja-JP)
2009-06-15T13:45:30 -> (fr-FR)
'tt'The AM/PM designator.
More information: The 'tt' Custom Format Specifier.
2009-06-15T13:45:30 -> PM (en-US)
2009-06-15T13:45:30 -> 午後 (ja-JP)
2009-06-15T13:45:30 -> (fr-FR)
'y'The year, from 0 to 99.
More information: The 'y' Custom Format Specifier.
0001-01-01T00:00:00 -> 1
0900-01-01T00:00:00 -> 0
1900-01-01T00:00:00 -> 0
2009-06-15T13:45:30 -> 9
2019-06-15T13:45:30 -> 19
'yy'The year, from 00 to 99.
More information: The 'yy' Custom Format Specifier.
0001-01-01T00:00:00 -> 01
0900-01-01T00:00:00 -> 00
1900-01-01T00:00:00 -> 00
2019-06-15T13:45:30 -> 19
'yyy'The year, with a minimum of three digits.
More information: The 'yyy' Custom Format Specifier.
0001-01-01T00:00:00 -> 001
0900-01-01T00:00:00 -> 900
1900-01-01T00:00:00 -> 1900
2009-06-15T13:45:30 -> 2009
'yyyy'The year as a four-digit number.
More information: The 'yyyy' Custom Format Specifier.
0001-01-01T00:00:00 -> 0001
0900-01-01T00:00:00 -> 0900
1900-01-01T00:00:00 -> 1900
2009-06-15T13:45:30 -> 2009
'yyyyy'The year as a five-digit number.
More information: The 'yyyyy' Custom Format Specifier.
0001-01-01T00:00:00 -> 00001
2009-06-15T13:45:30 -> 02009
'z'Hours offset from UTC, with no leading zeros.
More information: The 'z' Custom Format Specifier.
2009-06-15T13:45:30-07:00 -> -7
'zz'Hours offset from UTC, with a leading zero for a single-digit value.
More information: The 'zz' Custom Format Specifier.
2009-06-15T13:45:30-07:00 -> -07
'zzz'Hours and minutes offset from UTC.
More information: The 'zzz' Custom Format Specifier.
2009-06-15T13:45:30-07:00 -> -07:00
':'The time separator.
More information: The ':' Custom Format Specifier.
2009-06-15T13:45:30 -> : (en-US)
2009-06-15T13:45:30 -> . (it-IT)
2009-06-15T13:45:30 -> : (ja-JP)
'/'The date separator.
More Information: The '/' Custom Format Specifier.
2009-06-15T13:45:30 -> / (en-US)
2009-06-15T13:45:30 -> - (ar-DZ)
2009-06-15T13:45:30 -> . (tr-TR)
'string'
'string'
Literal string delimiter.
More information: Character literals.
2009-06-15T13:45:30 ('arr:' h:m t) -> arr: 1:45 P
2009-06-15T13:45:30 ('arr:' h:m t) -> arr: 1:45 P
%Defines the following character as a custom format specifier.
More information:Using Single Custom Format Specifiers.
2009-06-15T13:45:30 (%h) -> 1
The escape character.
More information: Character literals and Using the Escape Character.
2009-06-15T13:45:30 (h h) -> 1 h
Any other characterThe character is copied to the result string unchanged.
More information: Character literals.
2009-06-15T01:45:30 (arr hh:mm t) -> arr 01:45 A

The following sections provide additional information about each custom date and time format specifier. Unless otherwise noted, each specifier produces an identical string representation regardless of whether it's used with a DateTime value or a DateTimeOffset value.

The 'd' custom format specifier

The 'd' custom format specifier represents the day of the month as a number from 1 through 31. A single-digit day is formatted without a leading zero.

If the 'd' format specifier is used without other custom format specifiers, it's interpreted as the 'd' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'd' custom format specifier in several format strings.

The 'dd' custom format specifier

The 'dd' custom format string represents the day of the month as a number from 01 through 31. A single-digit day is formatted with a leading zero.

The following example includes the 'dd' custom format specifier in a custom format string.

The 'ddd' custom format specifier

The 'ddd' custom format specifier represents the abbreviated name of the day of the week. The localized abbreviated name of the day of the week is retrieved from the DateTimeFormatInfo.AbbreviatedDayNames property of the current or specified culture.

The following example includes the 'ddd' custom format specifier in a custom format string.

The 'dddd' custom format specifier

The 'dddd' custom format specifier (plus any number of additional 'd' specifiers) represents the full name of the day of the week. The localized name of the day of the week is retrieved from the DateTimeFormatInfo.DayNames property of the current or specified culture.

The following example includes the 'dddd' custom format specifier in a custom format string.

The 'f' custom format specifier

The 'f' custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value.

If the 'f' format specifier is used without other format specifiers, it's interpreted as the 'f' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

When you use 'f' format specifiers as part of a format string supplied to the ParseExact, TryParseExact, ParseExact, or TryParseExact method, the number of 'f' format specifiers indicates the number of most significant digits of the seconds fraction that must be present to successfully parse the string.

Call of duty black ops 2 zombies demo download pc. The following example includes the 'f' custom format specifier in a custom format string.

The 'ff' custom format specifier

The 'ff' custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value.

following example includes the 'ff' custom format specifier in a custom format string.

The 'fff' custom format specifier

The 'fff' custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value.

The following example includes the 'fff' custom format specifier in a custom format string.

The 'ffff' custom format specifier

The 'ffff' custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value.

Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT version 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'fffff' custom format specifier

The 'fffff' custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value.

Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'ffffff' custom format specifier

The 'ffffff' custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value.

Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'fffffff' custom format specifier

The 'fffffff' custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value.

Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'F' custom format specifier

The 'F' custom format specifier represents the most significant digit of the seconds fraction; that is, it represents the tenths of a second in a date and time value. Nothing is displayed if the digit is zero.

If the 'F' format specifier is used without other format specifiers, it's interpreted as the 'F' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The number of 'F' format specifiers used with the ParseExact, TryParseExact, ParseExact, or TryParseExact method indicates the maximum number of most significant digits of the seconds fraction that can be present to successfully parse the string.

The following example includes the 'F' custom format specifier in a custom format string.

The 'FF' custom format specifier

The 'FF' custom format specifier represents the two most significant digits of the seconds fraction; that is, it represents the hundredths of a second in a date and time value. However, trailing zeros or two zero digits aren't displayed.

The following example includes the 'FF' custom format specifier in a custom format string.

The 'FFF' custom format specifier

The 'FFF' custom format specifier represents the three most significant digits of the seconds fraction; that is, it represents the milliseconds in a date and time value. However, trailing zeros or three zero digits aren't displayed.

The following example includes the 'FFF' custom format specifier in a custom format string.

The 'FFFF' custom format specifier

The 'FFFF' custom format specifier represents the four most significant digits of the seconds fraction; that is, it represents the ten thousandths of a second in a date and time value. However, trailing zeros or four zero digits aren't displayed.

Although it's possible to display the ten thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'FFFFF' custom format specifier

The 'FFFFF' custom format specifier represents the five most significant digits of the seconds fraction; that is, it represents the hundred thousandths of a second in a date and time value. However, trailing zeros or five zero digits aren't displayed.

Although it's possible to display the hundred thousandths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'FFFFFF' custom format specifier

The 'FFFFFF' custom format specifier represents the six most significant digits of the seconds fraction; that is, it represents the millionths of a second in a date and time value. However, trailing zeros or six zero digits aren't displayed.

Although it's possible to display the millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'FFFFFFF' custom format specifier

The 'FFFFFFF' custom format specifier represents the seven most significant digits of the seconds fraction; that is, it represents the ten millionths of a second in a date and time value. However, trailing zeros or seven zero digits aren't displayed.

Although it's possible to display the ten millionths of a second component of a time value, that value may not be meaningful. The precision of date and time values depends on the resolution of the system clock. On the Windows NT 3.5 (and later) and Windows Vista operating systems, the clock's resolution is approximately 10-15 milliseconds.

The 'g' or 'gg' custom format specifier

The 'g' or 'gg' custom format specifiers (plus any number of additional 'g' specifiers) represents the period or era, such as A.D. The formatting operation ignores this specifier if the date to be formatted doesn't have an associated period or era string.

If the 'g' format specifier is used without other custom format specifiers, it's interpreted as the 'g' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'g' custom format specifier in a custom format string.

The 'h' custom format specifier

The 'h' custom format specifier represents the hour as a number from 1 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted without a leading zero. For example, given a time of 5:43 in the morning or afternoon, this custom format specifier displays '5'.

If the 'h' format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'h' custom format specifier in a custom format string.

The 'hh' custom format specifier

The 'hh' custom format specifier (plus any number of additional 'h' specifiers) represents the hour as a number from 01 through 12; that is, the hour is represented by a 12-hour clock that counts the whole hours since midnight or noon. A particular hour after midnight is indistinguishable from the same hour after noon. The hour is not rounded, and a single-digit hour is formatted with a leading zero. For example, given a time of 5:43 in the morning or afternoon, this format specifier displays '05'.

The following example includes the 'hh' custom format specifier in a custom format string.

The 'H' custom format specifier

The 'H' custom format specifier represents the hour as a number from 0 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted without a leading zero.

If the 'H' format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'H' custom format specifier in a custom format string.

The 'HH' custom format specifier

The 'HH' custom format specifier (plus any number of additional 'H' specifiers) represents the hour as a number from 00 through 23; that is, the hour is represented by a zero-based 24-hour clock that counts the hours since midnight. A single-digit hour is formatted with a leading zero.

The following example includes the 'HH' custom format specifier in a custom format string.

The 'K' custom format specifier

The 'K' custom format specifier represents the time zone information of a date and time value. When this format specifier is used with DateTime values, the result string is defined by the value of the DateTime.Kind property:

  • For the local time zone (a DateTime.Kind property value of DateTimeKind.Local), this specifier is equivalent to the 'zzz' specifier and produces a result string containing the local offset from Coordinated Universal Time (UTC); for example, '-07:00'.

  • For a UTC time (a DateTime.Kind property value of DateTimeKind.Utc), the result string includes a 'Z' character to represent a UTC date.

  • For a time from an unspecified time zone (a time whose DateTime.Kind property equals DateTimeKind.Unspecified), the result is equivalent to String.Empty.

For DateTimeOffset values, the 'K' format specifier is equivalent to the 'zzz' format specifier, and produces a result string containing the DateTimeOffset value's offset from UTC.

If the 'K' format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example displays the string that results from using the 'K' custom format specifier with various DateTime and DateTimeOffset values on a system in the U.S. Pacific Time zone.

The 'm' custom format specifier

The 'm' custom format specifier represents the minute as a number from 0 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted without a leading zero.

If the 'm' format specifier is used without other custom format specifiers, it's interpreted as the 'm' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'm' custom format specifier in a custom format string.

The 'mm' custom format specifier

The 'mm' custom format specifier (plus any number of additional 'm' specifiers) represents the minute as a number from 00 through 59. The minute represents whole minutes that have passed since the last hour. A single-digit minute is formatted with a leading zero.

The following example includes the 'mm' custom format specifier in a custom format string.

The 'M' custom format specifier

The 'M' custom format specifier represents the month as a number from 1 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted without a leading zero.

If the 'M' format specifier is used without other custom format specifiers, it's interpreted as the 'M' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'M' custom format specifier in a custom format string.

The 'MM' custom format specifier

The 'MM' custom format specifier represents the month as a number from 01 through 12 (or from 1 through 13 for calendars that have 13 months). A single-digit month is formatted with a leading zero.

12 hr time format

The following example includes the 'MM' custom format specifier in a custom format string.

The 'MMM' custom format specifier

The 'MMM' custom format specifier represents the abbreviated name of the month. The localized abbreviated name of the month is retrieved from the DateTimeFormatInfo.AbbreviatedMonthNames property of the current or specified culture.

The following example includes the 'MMM' custom format specifier in a custom format string.

The 'MMMM' custom format specifier

The 'MMMM' custom format specifier represents the full name of the month. The localized name of the month is retrieved from the DateTimeFormatInfo.MonthNames property of the current or specified culture.

The following example includes the 'MMMM' custom format specifier in a custom format string.

The 's' custom format specifier

The 's' custom format specifier represents the seconds as a number from 0 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted without a leading zero.

If the 's' format specifier is used without other custom format specifiers, it's interpreted as the 's' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 's' custom format specifier in a custom format string.

The 'ss' custom format specifier

The 'ss' custom format specifier (plus any number of additional 's' specifiers) represents the seconds as a number from 00 through 59. The result represents whole seconds that have passed since the last minute. A single-digit second is formatted with a leading zero.

The following example includes the 'ss' custom format specifier in a custom format string.

The 't' custom format specifier

The 't' custom format specifier represents the first character of the AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999.

If the 't' format specifier is used without other custom format specifiers, it's interpreted as the 't' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 't' custom format specifier in a custom format string.

The 'tt' custom format specifier

The 'tt' custom format specifier (plus any number of additional 't' specifiers) represents the entire AM/PM designator. The appropriate localized designator is retrieved from the DateTimeFormatInfo.AMDesignator or DateTimeFormatInfo.PMDesignator property of the current or specific culture. The AM designator is used for all times from 0:00:00 (midnight) to 11:59:59.999. The PM designator is used for all times from 12:00:00 (noon) to 23:59:59.999.

Make sure to use the 'tt' specifier for languages for which it's necessary to maintain the distinction between AM and PM. An example is Japanese, for which the AM and PM designators differ in the second character instead of the first character.

The following example includes the 'tt' custom format specifier in a custom format string.

The 'y' custom format specifier

The 'y' custom format specifier represents the year as a one-digit or two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the first digit of a two-digit year begins with a zero (for example, 2008), the number is formatted without a leading zero.

If the 'y' format specifier is used without other custom format specifiers, it's interpreted as the 'y' standard date and time format specifier. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'y' custom format specifier in a custom format string.

The 'yy' custom format specifier

Linux Time Format String

The 'yy' custom format specifier represents the year as a two-digit number. If the year has more than two digits, only the two low-order digits appear in the result. If the two-digit year has fewer than two significant digits, the number is padded with leading zeros to produce two digits.

In a parsing operation, a two-digit year that is parsed using the 'yy' custom format specifier is interpreted based on the Calendar.TwoDigitYearMax property of the format provider's current calendar. The following example parses the string representation of a date that has a two-digit year by using the default Gregorian calendar of the en-US culture, which, in this case, is the current culture. It then changes the current culture's CultureInfo object to use a GregorianCalendar object whose TwoDigitYearMax property has been modified.

The following example includes the 'yy' custom format specifier in a custom format string.

The 'yyy' custom format specifier

The 'yyy' custom format specifier represents the year with a minimum of three digits. If the year has more than three significant digits, they are included in the result string. If the year has fewer than three digits, the number is padded with leading zeros to produce three digits.

Note

For the Thai Buddhist calendar, which can have five-digit years, this format specifier displays all significant digits.

The following example includes the 'yyy' custom format specifier in a custom format string.

The 'yyyy' custom format specifier

The 'yyyy' custom format specifier represents the year with a minimum of four digits. If the year has more than four significant digits, they are included in the result string. If the year has fewer than four digits, the number is padded with leading zeros to produce four digits.

Note

For the Thai Buddhist calendar, which can have five-digit years, this format specifier displays a minimum of four digits.

The following example includes the 'yyyy' custom format specifier in a custom format string.

The 'yyyyy' custom format specifier

The 'yyyyy' custom format specifier (plus any number of additional 'y' specifiers) represents the year with a minimum of five digits. If the year has more than five significant digits, they are included in the result string. If the year has fewer than five digits, the number is padded with leading zeros to produce five digits.

If there are additional 'y' specifiers, the number is padded with as many leading zeros as necessary to produce the number of 'y' specifiers.

The following example includes the 'yyyyy' custom format specifier in a custom format string.

The 'z' custom format specifier

With DateTime values, the 'z' custom format specifier represents the signed offset of the local operating system's time zone from Coordinated Universal Time (UTC), measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the 'z' format specifier is not recommended for use with DateTime values.

With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours.

The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted without a leading zero.

If the 'z' format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The following example includes the 'z' custom format specifier in a custom format string.

The 'zz' custom format specifier

With DateTime values, the 'zz' custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the 'zz' format specifier is not recommended for use with DateTime values.

With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours.

The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.

The following example includes the 'zz' custom format specifier in a custom format string.

The 'zzz' custom format specifier

With DateTime values, the 'zzz' custom format specifier represents the signed offset of the local operating system's time zone from UTC, measured in hours and minutes. It doesn't reflect the value of an instance's DateTime.Kind property. For this reason, the 'zzz' format specifier is not recommended for use with DateTime values.

With DateTimeOffset values, this format specifier represents the DateTimeOffset value's offset from UTC in hours and minutes.

The offset is always displayed with a leading sign. A plus sign (+) indicates hours ahead of UTC, and a minus sign (-) indicates hours behind UTC. A single-digit offset is formatted with a leading zero.

Standard Date Time Format Strings

The following example includes the 'zzz' custom format specifier in a custom format string.

The ':' custom format specifier

The ':' custom format specifier represents the time separator, which is used to differentiate hours, minutes, and seconds. The appropriate localized time separator is retrieved from the DateTimeFormatInfo.TimeSeparator property of the current or specified culture.

Note

To change the time separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string hh'_'dd'_'ss produces a result string in which '_' (an underscore) is always used as the time separator. To change the time separator for all dates for a culture, either change the value of the DateTimeFormatInfo.TimeSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its TimeSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter.

If the ':' format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

The '/' custom format specifier

The '/' custom format specifier represents the date separator, which is used to differentiate years, months, and days. The appropriate localized date separator is retrieved from the DateTimeFormatInfo.DateSeparator property of the current or specified culture.

Note

To change the date separator for a particular date and time string, specify the separator character within a literal string delimiter. For example, the custom format string mm'/'dd'/'yyyy produces a result string in which '/' is always used as the date separator. To change the date separator for all dates for a culture, either change the value of the DateTimeFormatInfo.DateSeparator property of the current culture, or instantiate a DateTimeFormatInfo object, assign the character to its DateSeparator property, and call an overload of the formatting method that includes an IFormatProvider parameter.

If the '/' format specifier is used without other custom format specifiers, it's interpreted as a standard date and time format specifier and throws a FormatException. For more information about using a single format specifier, see Using Single Custom Format Specifiers later in this article.

Character literals

The following characters in a custom date and time format string are reserved and are always interpreted as formatting characters or, in the case of ', ', /, and , as special characters.

FHKMd
fghms
tyz%:
/''

All other characters are always interpreted as character literals and, in a formatting operation, are included in the result string unchanged. In a parsing operation, they must match the characters in the input string exactly; the comparison is case-sensitive.

The following example includes the literal characters 'PST' (for Pacific Standard Time) and 'PDT' (for Pacific Daylight Time) to represent the local time zone in a format string. Note that the string is included in the result string, and that a string that includes the local time zone string also parses successfully.

There are two ways to indicate that characters are to be interpreted as literal characters and not as reserve characters, so that they can be included in a result string or successfully parsed in an input string:

  • By escaping each reserved character. For more information, see Using the Escape Character.

The following example includes the literal characters 'pst' (for Pacific Standard time) to represent the local time zone in a format string. Because both 's' and 't' are custom format strings, both characters must be escaped to be interpreted as character literals.

  • By enclosing the entire literal string in quotation marks or apostrophes. The following example is like the previous one, except that 'pst' is enclosed in quotation marks to indicate that the entire delimited string should be interpreted as character literals.

Notes

Using single custom format specifiers

A custom date and time format string consists of two or more characters. Date and time formatting methods interpret any single-character string as a standard date and time format string. If they don't recognize the character as a valid format specifier, they throw a FormatException. For example, a format string that consists only of the specifier 'h' is interpreted as a standard date and time format string. However, in this particular case, an exception is thrown because there is no 'h' standard date and timeformat specifier.

To use any of the custom date and time format specifiers as the only specifier in a format string (that is, to use the 'd', 'f', 'F', 'g', 'h', 'H', 'K', 'm', 'M', 's', 't', 'y', 'z', ':', or '/' custom format specifier by itself), include a space before or after the specifier, or include a percent ('%') format specifier before the single custom date and time specifier.

For example, '%h' is interpreted as a custom date and time format string that displays the hour represented by the current date and time value. You can also use the ' h' or 'h ' format string, although this includes a space in the result string along with the hour. The following example illustrates these three format strings.

Iso Time Format String Python

Using the Escape Character

The 'd', 'f', 'F', 'g', 'h', 'H', 'K', 'm', 'M', 's', 't', 'y', 'z', ':', or '/' characters in a format string are interpreted as custom format specifiers rather than as literal characters. To prevent a character from being interpreted as a format specifier, you can precede it with a backslash (), which is the escape character. The escape character signifies that the following character is a character literal that should be included in the result string unchanged.

Iso Format Date

To include a backslash in a result string, you must escape it with another backslash ().

Note

Some compilers, such as the C++ and C# compilers, may also interpret a single backslash character as an escape character. To ensure that a string is interpreted correctly when formatting, you can use the verbatim string literal character (the @ character) before the string in C#, or add another backslash character before each backslash in C# and C++. The following C# example illustrates both approaches.

Iso Time Format String Lights

The following example uses the escape character to prevent the formatting operation from interpreting the 'h' and 'm' characters as format specifiers.

Control Panel settings

Iso Time Format String In Excel

The Regional and Language Options settings in Control Panel influence the result string produced by a formatting operation that includes many of the custom date and time format specifiers. These settings are used to initialize the DateTimeFormatInfo object associated with the current thread culture, which provides values used to govern formatting. Computers that use different settings generate different result strings.

In addition, if you use the CultureInfo.CultureInfo(String) constructor to instantiate a new CultureInfo object that represents the same culture as the current system culture, any customizations established by the Regional and Language Options item in Control Panel will be applied to the new CultureInfo object. You can use the CultureInfo.CultureInfo(String, Boolean) constructor to create a CultureInfo object that doesn't reflect a system's customizations.

DateTimeFormatInfo properties

Formatting is influenced by properties of the current DateTimeFormatInfo object, which is provided implicitly by the current thread culture or explicitly by the IFormatProvider parameter of the method that invokes formatting. For the IFormatProvider parameter, you should specify a CultureInfo object, which represents a culture, or a DateTimeFormatInfo object.

The result string produced by many of the custom date and time format specifiers also depends on properties of the current DateTimeFormatInfo object. Your application can change the result produced by some custom date and time format specifiers by changing the corresponding DateTimeFormatInfo property. For example, the 'ddd' format specifier adds an abbreviated weekday name found in the AbbreviatedDayNames string array to the result string. Similarly, the 'MMMM' format specifier adds a full month name found in the MonthNames string array to the result string.

See also