Cldr.DateTime.Interval.to_string
to_string, go back to Cldr.DateTime.Interval module for more information.
Specs
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 representing of an interval format. The default is:medium.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
{: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 underlyingCLDRcalendar 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 –"}