From 0039c5e4fe015ac29b8faa91b775b9b482bc16bb Mon Sep 17 00:00:00 2001 From: technatoria <40663612+technatoria@users.noreply.github.com> Date: Fri, 12 Apr 2024 15:28:49 +0200 Subject: [PATCH] Update custom-date-and-time-format-strings.md --- docs/standard/base-types/custom-date-and-time-format-strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard/base-types/custom-date-and-time-format-strings.md b/docs/standard/base-types/custom-date-and-time-format-strings.md index 6608f67362f51..2b65f52099feb 100644 --- a/docs/standard/base-types/custom-date-and-time-format-strings.md +++ b/docs/standard/base-types/custom-date-and-time-format-strings.md @@ -87,7 +87,7 @@ In parsing operations, custom date and time format strings can be used with the | ":" | The time separator.

More information: [The ":" Custom Format Specifier](#timeSeparator). | 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](#dateSeparator). | 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](#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](#UsingSingleSpecifiers). | 2009-06-15T13:45:30 (%h) -> 1 | +| % | Defines the following character as a custom format specifier.

More information: [Using Single Custom Format Specifiers](#UsingSingleSpecifiers). | 2009-06-15T13:45:30 (%h) -> 1 | | \ | The escape character.

More information: [Character literals](#Literals) and [Using the Escape Character](#escape). | 2009-06-15T13:45:30 (h \h) -> 1 h | | Any other character | The character is copied to the result string unchanged.

More information: [Character literals](#Literals). | 2009-06-15T01:45:30 (arr hh:mm t) -> arr 01:45 A |