View Source Cldr.Date.Interval (Cldr Dates & Times v2.13.1)
Interval 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.Date.Interval.to_string/3
Link to this section Summary
Functions
Returns the format code representing the date or time unit that is the greatest difference between two dates.
Returns a Date.Range or CalendarInterval as
a localised string.
Returns a localised string representing the formatted interval formed by two dates.
Returns a Date.Range or CalendarInterval as
a localised string or raises an exception.
Returns a localised string representing the formatted interval formed by two dates or raises an exception.
Link to this section Functions
Returns the format code representing the date or time unit that is the greatest difference between two dates.
arguments
Arguments
returns
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
{:error, :no_practical_difference}
example
Example
iex> Cldr.Date.Interval.greatest_difference ~D[2022-04-22], ~D[2022-04-23]
{:ok, :d}
iex> Cldr.Date.Interval.greatest_difference ~D[2022-04-22], ~D[2022-04-22]
{:error, :no_practical_difference}
Specs
to_string(Cldr.Interval.range(), Cldr.backend(), Keyword.t()) :: {:ok, String.t()} | {:error, {module(), String.t()}}
Returns a Date.Range or CalendarInterval as
a localised string.
arguments
Arguments
rangeis either aDate.Range.treturned fromDate.range/2or aCalendarInterval.tbackendis any module that includesuse Cldrand is therefore anCldrbackend moduleoptionsis a keyword list of options. The default is[].
options
Options
:formatis one of:short,:mediumor:longor a specific format type or a string representing of an interval format. The default is:medium.:stylesupports dfferent formatting styles. The alternatives are:date,:month_and_day,:monthand:year_and_month. The default is:date.:localeis any valid locale name returned byCldr.known_locale_names/0or aCldr.LanguageTagstruct. The default isCldr.get_locale/0:number_systema number system into which the formatted date digits should be transliterated
returns
Returns
{:ok, string}or{:error, {exception, reason}}
notes
Notes
CalendarIntervalsupport requires adding the dependency calendar_interval to thedepsconfiguration inmix.exs.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
Examples
iex> Cldr.Date.Interval.to_string Date.range(~D[2020-01-01], ~D[2020-12-31]), MyApp.Cldr
{:ok, "Jan 1 – Dec 31, 2020"}
iex> Cldr.Date.Interval.to_string Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr
{:ok, "Jan 1 – 12, 2020"}
iex> Cldr.Date.Interval.to_string Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr,
...> format: :long
{:ok, "Wed, Jan 1 – Sun, Jan 12, 2020"}
iex> Cldr.Date.Interval.to_string Date.range(~D[2020-01-01], ~D[2020-12-01]), MyApp.Cldr,
...> format: :long, style: :year_and_month
{:ok, "January – December 2020"}
iex> use CalendarInterval
iex> Cldr.Date.Interval.to_string ~I"2020-01/12", MyApp.Cldr
{:ok, "Jan 1 – Dec 31, 2020"}
iex> Cldr.Date.Interval.to_string Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr,
...> format: :short
{:ok, "1/1/2020 – 1/12/2020"}
iex> Cldr.Date.Interval.to_string Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr,
...> format: :long, locale: "fr"
{:ok, "mer. 1 – dim. 12 janv. 2020"}
Specs
to_string( Calendar.date() | nil, Calendar.date() | 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
Arguments
fromis any map that conforms to theCalendar.datetype.tois any map that conforms to theCalendar.datetype.tomust occur on or afterfrom.backendis any module that includesuse Cldrand is therefore anCldrbackend moduleoptionsis a keyword list of options. The default is[].
Either from or to may also be nil in which case the
interval is formatted as an open interval with the non-nil
side formatted as a standalone date.
options
Options
:formatis one of:short,:mediumor:longor a specific format type or a string representing of an interval format. The default is:medium.:stylesupports dfferent formatting styles. The alternatives are:date,:month_and_day,:monthand:year_and_month. The default is:date.localeis any valid locale name returned byCldr.known_locale_names/0or aCldr.LanguageTagstruct. The default isCldr.get_locale/0number_system:a number system into which the formatted date digits should be transliterated
returns
Returns
{:ok, string}or{:error, {exception, reason}}
notes
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
Examples
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], ~D[2020-12-31], MyApp.Cldr
{:ok, "Jan 1 – Dec 31, 2020"}
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr
{:ok, "Jan 1 – 12, 2020"}
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :long
{:ok, "Wed, Jan 1 – Sun, Jan 12, 2020"}
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], ~D[2020-12-01], MyApp.Cldr,
...> format: :long, style: :year_and_month
{:ok, "January – December 2020"}
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :short
{:ok, "1/1/2020 – 1/12/2020"}
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], nil, MyApp.Cldr,
...> format: :short
{:ok, "1/1/20 –"}
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :long, locale: "fr"
{:ok, "mer. 1 – dim. 12 janv. 2020"}
iex> Cldr.Date.Interval.to_string ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :long, locale: "th", number_system: :thai
{:ok, "พ. ๑ ม.ค. – อา. ๑๒ ม.ค. ๒๐๒๐"}
Specs
to_string!(Cldr.Interval.range(), Cldr.backend(), Keyword.t()) :: String.t() | no_return()
Returns a Date.Range or CalendarInterval as
a localised string or raises an exception.
arguments
Arguments
rangeis either aDate.Range.treturned fromDate.range/2or aCalendarInterval.tbackendis any module that includesuse Cldrand is therefore aCldrbackend moduleoptionsis a keyword list of options. The default is[].
options
Options
:formatis one of:short,:mediumor:longor a specific format type or a string representing of an interval format. The default is:medium.:stylesupports dfferent formatting styles. The alternatives are:date,:month_and_day,:monthand:year_and_month. The default is:date.localeis any valid locale name returned byCldr.known_locale_names/0or aCldr.LanguageTagstruct. The default isCldr.get_locale/0number_system:a number system into which the formatted date digits should be transliterated
returns
Returns
stringorraises an exception
notes
Notes
CalendarIntervalsupport requires adding the dependency calendar_interval to thedepsconfiguration inmix.exs.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
Examples
iex> Cldr.Date.Interval.to_string! Date.range(~D[2020-01-01], ~D[2020-12-31]), MyApp.Cldr
"Jan 1 – Dec 31, 2020"
iex> Cldr.Date.Interval.to_string! Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr
"Jan 1 – 12, 2020"
iex> Cldr.Date.Interval.to_string! Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr,
...> format: :long
"Wed, Jan 1 – Sun, Jan 12, 2020"
iex> Cldr.Date.Interval.to_string! Date.range(~D[2020-01-01], ~D[2020-12-01]), MyApp.Cldr,
...> format: :long, style: :year_and_month
"January – December 2020"
iex> use CalendarInterval
iex> Cldr.Date.Interval.to_string! ~I"2020-01/12", MyApp.Cldr
"Jan 1 – Dec 31, 2020"
iex> Cldr.Date.Interval.to_string! Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr,
...> format: :short
"1/1/2020 – 1/12/2020"
iex> Cldr.Date.Interval.to_string! Date.range(~D[2020-01-01], ~D[2020-01-12]), MyApp.Cldr,
...> format: :long, locale: "fr"
"mer. 1 – dim. 12 janv. 2020"
Specs
to_string!( Calendar.date() | nil, Calendar.date() | nil, 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
Arguments
fromis any map that conforms to theCalendar.datetype.tois any map that conforms to theCalendar.datetype.tomust occur on or afterfrom.backendis any module that includesuse Cldrand is therefore anCldrbackend moduleoptionsis a keyword list of options
options
Options
:formatis one of:short,:mediumor:longor a specific format type or a string representing of an interval format. The default is:medium.:stylesupports dfferent formatting styles. The alternatives are:date,:month_and_day,:monthand:year_and_month. The default is:date.localeis any valid locale name returned byCldr.known_locale_names/0or aCldr.LanguageTagstruct. The default isCldr.get_locale/0number_system:a number system into which the formatted date digits should be transliterated
returns
Returns
stringorraises an exception
notes
Notes
For more information on interval format string see
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
Examples
iex> Cldr.Date.Interval.to_string! ~D[2020-01-01], ~D[2020-12-31], MyApp.Cldr
"Jan 1 – Dec 31, 2020"
iex> Cldr.Date.Interval.to_string! ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr
"Jan 1 – 12, 2020"
iex> Cldr.Date.Interval.to_string! ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :long
"Wed, Jan 1 – Sun, Jan 12, 2020"
iex> Cldr.Date.Interval.to_string! ~D[2020-01-01], ~D[2020-12-01], MyApp.Cldr,
...> format: :long, style: :year_and_month
"January – December 2020"
iex> Cldr.Date.Interval.to_string! ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :short
"1/1/2020 – 1/12/2020"
iex> Cldr.Date.Interval.to_string! ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :long, locale: "fr"
"mer. 1 – dim. 12 janv. 2020"
iex> Cldr.Date.Interval.to_string! ~D[2020-01-01], ~D[2020-01-12], MyApp.Cldr,
...> format: :long, locale: "th", number_system: :thai
"พ. ๑ ม.ค. – อา. ๑๒ ม.ค. ๒๐๒๐"