Creates a date parser function based on the specified locale, options, or specifier.

The locale to use for parsing.

The parsing options or specifier.

The time zone to use for parsing.

A function that parses a date string according to the specified locale and options or specifier.

  • Creates a date parser function based on the specified locale.

    Parameters

    • locale: string

      The locale to use for parsing.

    Returns DateParser

    A function that parses a date string according to the specified locale.

  • Creates a date parser function based on the specified locale and specifier.

    Parameters

    • locale: string

      The locale to use for parsing.

    • specifier: string

      The parsing specifier string.

    • OptionaltimeZone: string

      The time zone to use for parsing.

    Returns DateParser

    A function that parses a date string according to the specified locale and specifier.

    The following are specifiers and values for 2008-07-31 15:30:45.678 using the de-DE locale and Europe/Berlin time zone (DST GMT+2): specifier: 'd' => '31.07.2008' specifier: 'D' => 'Donnerstag, 31. Juli 2008' specifier: 'f' => 'Donnerstag, 31. Juli 2008 um 15:30' specifier: 'F' => 'Donnerstag, 31. Juli 2008 um 15:30:45' specifier: 'g' => '31.07.2008 15:30' specifier: 'G' => '31.07.2008 15:30:45' specifier: 'm' => '31. Juli' specifier: 'M' => '31. Juli' specifier: 'o' => '2008-07-31T13:30:45.6780000' specifier: 'O' => '2008-07-31T13:30:45.6780000' specifier: 'r' => 'Thu, 31 Jul 2008 13:30:45 GMT' specifier: 'R' => 'Thu, 31 Jul 2008 13:30:45 GMT' specifier: 's' => '2008-07-31T13:30:45' specifier: 'S' => '2008-07-31T13:30:45' specifier: 't' => '15:30' specifier: 'T' => '15:30:45' specifier: 'u' => '2008-07-31 13:30:45Z' specifier: 'U' => 'Donnerstag, 31. Juli 2008 13:30:45' specifier: 'Y' => Oktober 2008

  • Creates a date parser function based on the specified locale and options.

    Parameters

    • locale: string

      The locale to use for parsing.

    • options: NumberFormatOptions

      The parsing options.

    Returns DateParser

    A function that parses a date string according to the specified locale and options.