Cldr.DateTime.Interval (Cldr Dates & Times v2.24.0)
View SourceInterval formats allow for software to format intervals like "Jan 10-12, 2008" as a shorter and more natural format than "Jan 10, 2008 - Jan 12, 2008". They are designed to take a start and end date, time or datetime plus a formatting pattern and use that information to produce a localized format.
See Cldr.Interval.to_string/3 and Cldr.DateTime.Interval.to_string/3
Summary
Functions
Returns the format code representing the date or time unit that is the greatest difference between two date/times.
Returns a localised string representing the formatted interval formed by two dates.
Returns a localised string representing the formatted interval formed by two dates or raises an exception.
Returns a localised string representing the formatted interval formed by two dates or raises an exception.
Functions
Returns the format code representing the date or time unit that is the greatest difference between two date/times.
Arguments
fromis anyDateTime.t/0ort:NaiveDateTine.t/0tois anyDateTime.t/0ort:NaiveDateTine.t/0
Returns
{:ok, format_code}whereformat_codeis one of:ymeaning that the greatest difference is in the year:Mmeaning that the greatest difference is in the month:dmeaning that the greatest difference is in the day:Hmeaning that the greatest difference is in the hour:mmeaning that the greatest difference is in the minute
{:error, :no_practical_difference}
Example
iex> Cldr.DateTime.Interval.greatest_difference ~U[2022-04-22 02:00:00.0Z], ~U[2022-04-22 03:00:00.0Z]
{:ok, :H}
iex> Cldr.DateTime.Interval.greatest_difference ~U[2022-04-22 02:00:00.0Z], ~U[2022-04-22 02:00:01.0Z]
{:error, :no_practical_difference}
@spec to_string( Calendar.datetime() | nil, Calendar.datetime() | nil, Cldr.backend(), Keyword.t() ) :: {:ok, String.t()} | {:error, {module(), String.t()}}
Returns a localised string representing the formatted interval formed by two dates.
Arguments
fromis any map that conforms to theCalendar.datetimetype.tois any map that conforms to theCalendar.datetimetype.tomust occur on or afterfrom.backendis any module that includesuse Cldrand is therefore aCldrbackend moduleoptionsis a keyword list of options. The default is[].
Either of from or to may also be nil in which case the
result is an "open" interval and the non-nil parameter is formatted
using Cldr.DateTime.to_string/3.
Options
:formatis one of:short,:mediumor:longor a specific format type or a string representation of an interval format. The default is:medium.:date_formatis any one of:short,:medium,:long,:full. If defined, this option is used to format the date part of the date time. This option is only acceptable if the:formatoption is not specified, or is specified as either:short,:medium,:long,:full. If:date_formatis not specified then the date format is defined by the:formatoption.:time_formatis any one of:short,:medium,:long,:full. If defined, this option is used to format the time part of the date time. This option is only acceptable if the:formatoption is not specified, or is specified as either:short,:medium,:long,:full. If:time_formatis not specified thenthe time format is defined by the:formatoption.:localeis any valid locale name returned byCldr.known_locale_names/0or aCldr.LanguageTag.t/0struct. The default isCldr.get_locale/0:number_systema number system into which the formatted date digits should be transliterated.:preferexpresses the preference for one of the possible alternative sub-formats. See the variant preference notes below.
Variant Preference
- A small number of formats have one of two different alternatives, each with their own
preference specifier. The preferences are specified with the
:preferoption toCldr.Date.to_string/3. The preference is expressed as an atom, or a list of one or two atoms with one atom being either:unicodeor:asciiand one atom being either:defaultor:variant.Some formats (at the time of publishng only time formats but that may change in the future) have
:unicodeand:asciiversions of the format. The difference is the use of ascii space (0x20) as a separateor in the:asciiverison whereas the:unicodeversion may use non-breaking or other space characters. The default is:unicodeand this is the strongly preferred option. The:asciiformat is primarily to support legacy use cases and is not recommended. SeeCldr.Date.available_formats/3to see which formats have these variants.Some formats (at the time of publishing, only date and datetime formats) have
:defaultand:variantversions of the format. These variant formats are only included in a small number of locales. For example, the:"en-CA"locale, which has a:defaultformat respecting typical Canadian formatting and a:variantthat is more closely aligned to US formatting. The default is:default.
Returns
{:ok, string}or{:error, {exception, reason}}
Notes
For more information on interval format string see the
Cldr.Interval.The available predefined formats that can be applied are the keys of the map returned by
Cldr.DateTime.Format.interval_formats("en", :gregorian)where"en"can be replaced by any configuration locale name and:gregorianis the underlying CLDR calendar type.In the case where
fromandtoare equal, a single date is formatted instead of an interval
Examples
iex> Cldr.DateTime.Interval.to_string ~U[2020-01-01 00:00:00.0Z],
...> ~U[2020-12-31 10:00:00.0Z], MyApp.Cldr
{:ok, "Jan 1, 2020, 12:00:00 AM – Dec 31, 2020, 10:00:00 AM"}
iex> Cldr.DateTime.Interval.to_string ~U[2020-01-01 00:00:00.0Z], nil, MyApp.Cldr
{:ok, "Jan 1, 2020, 12:00:00 AM –"}
@spec to_string!(CalendarInterval.t(), Cldr.backend(), Keyword.t()) :: String.t() | no_return()
Returns a localised string representing the formatted interval formed by two dates or raises an exception.
Arguments
fromis any map that conforms to theCalendar.datetimetype.tois any map that conforms to theCalendar.datetimetype.tomust occur on or afterfrom.backendis any module that includesuse Cldrand is therefore aCldrbackend module.optionsis a keyword list of options. The default is[].
Options
:formatis one of:short,:mediumor:longor a specific format type or a string representing of an interval format. The default is:medium.:date_formatis any one of:short,:medium,:long,:full. If defined, this option is used to format the date part of the date time. This option is only acceptable if the:formatoption is not specified, or is specified as either:short,:medium,:long,:full. If:date_formatis not specified then the date format is defined by the:formatoption.:time_formatis any one of:short,:medium,:long,:full. If defined, this option is used to format the time part of the date time. This option is only acceptable if the:formatoption is not specified, or is specified as either:short,:medium,:long,:full. If:time_formatis not specified then the time format is defined by the:formatoption.:localeis any valid locale name returned byCldr.known_locale_names/0or aCldr.LanguageTag.t/0struct. The default isCldr.get_locale/0.:number_systema number system into which the formatted date digits should be transliterated.:preferexpresses the preference for one of the possible alternative sub-formats. See the variant preference notes below.
Variant Preference
- A small number of formats have one of two different alternatives, each with their own
preference specifier. The preferences are specified with the
:preferoption toCldr.Date.to_string/3. The preference is expressed as an atom, or a list of one or two atoms with one atom being either:unicodeor:asciiand one atom being either:defaultor:variant.Some formats (at the time of publishng only time formats but that may change in the future) have
:unicodeand:asciiversions of the format. The difference is the use of ascii space (0x20) as a separateor in the:asciiverison whereas the:unicodeversion may use non-breaking or other space characters. The default is:unicodeand this is the strongly preferred option. The:asciiformat is primarily to support legacy use cases and is not recommended. SeeCldr.Date.available_formats/3to see which formats have these variants.Some formats (at the time of publishing, only date and datetime formats) have
:defaultand:variantversions of the format. These variant formats are only included in a small number of locales. For example, the:"en-CA"locale, which has a:defaultformat respecting typical Canadian formatting and a:variantthat is more closely aligned to US formatting. The default is:default.
Returns
stringorraises an exception
Notes
For more information on interval format string see the
Cldr.Interval.The available predefined formats that can be applied are the keys of the map returned by
Cldr.DateTime.Format.interval_formats("en", :gregorian)where"en"can be replaced by any configuration locale name and:gregorianis the underlying CLDR calendar type.In the case where
fromandtoare equal, a single date is formatted instead of an interval.
Examples
iex> use CalendarInterval
iex> Cldr.DateTime.Interval.to_string! ~I"2020-01-01 00:00/10:00", MyApp.Cldr
"Jan 1, 2020, 12:00:00 AM – 10:00:59 AM"
Returns a localised string representing the formatted interval formed by two dates or raises an exception.
Arguments
fromis any map that conforms to theCalendar.datetimetype.tois any map that conforms to theCalendar.datetimetype.tomust occur on or afterfrom.backendis any module that includesuse Cldrand is therefore aCldrbackend module.optionsis a keyword list of options. The default is[].
Options
:formatis one of:short,:mediumor:longor a specific format type or a string representation of an interval format. The default is:medium.:date_formatis any one of:short,:medium,:long,:full. If defined, this option is used to format the date part of the date time. This option is only acceptable if the:formatoption is not specified, or is specified as either:short,:medium,:long,:full. If:date_formatis not specified then the date format is defined by the:formatoption.:time_formatis any one of:short,:medium,:long,:full. If defined, this option is used to format the time part of the date time. This option is only acceptable if the:formatoption is not specified, or is specified as either:short,:medium,:long,:full. If:time_formatis not specified then the time format is defined by the:formatoption.:localeis any valid locale name returned byCldr.known_locale_names/0or aCldr.LanguageTag.t/0struct. The default isCldr.get_locale/0.:number_systema number system into which the formatted date digits should be transliterated.:preferexpresses the preference for one of the possible alternative sub-formats. See the variant preference notes below.
Variant Preference
- A small number of formats have one of two different alternatives, each with their own
preference specifier. The preferences are specified with the
:preferoption toCldr.Date.to_string/3. The preference is expressed as an atom, or a list of one or two atoms with one atom being either:unicodeor:asciiand one atom being either:defaultor:variant.Some formats (at the time of publishng only time formats but that may change in the future) have
:unicodeand:asciiversions of the format. The difference is the use of ascii space (0x20) as a separateor in the:asciiverison whereas the:unicodeversion may use non-breaking or other space characters. The default is:unicodeand this is the strongly preferred option. The:asciiformat is primarily to support legacy use cases and is not recommended. SeeCldr.Date.available_formats/3to see which formats have these variants.Some formats (at the time of publishing, only date and datetime formats) have
:defaultand:variantversions of the format. These variant formats are only included in a small number of locales. For example, the:"en-CA"locale, which has a:defaultformat respecting typical Canadian formatting and a:variantthat is more closely aligned to US formatting. The default is:default.
Returns
stringorraises an exception
Notes
For more information on interval format string see the
Cldr.Interval.The available predefined formats that can be applied are the keys of the map returned by
Cldr.DateTime.Format.interval_formats("en", :gregorian)where"en"can be replaced by any configuration locale name and:gregorianis the underlying CLDR calendar type.In the case where
fromandtoare equal, a single date is formatted instead of an interval
Examples
iex> Cldr.DateTime.Interval.to_string! ~U[2020-01-01 00:00:00.0Z],
...> ~U[2020-12-31 10:00:00.0Z], MyApp.Cldr
"Jan 1, 2020, 12:00:00 AM – Dec 31, 2020, 10:00:00 AM"