Tizen Native API  7.0
Simple Date Format

The Simple Date Format module provides API for formatting and parsing dates in language-independent manner.

Required Header

#include <utils_i18n.h>

Overview

The Simple Date Format module provides API for formatting and parsing dates in language-independent manner.

It allows for formatting (millis -> text), parsing (text -> millis), and normalization. Formats/Parses a date or time, which is the standard milliseconds since 24:00 GMT, Jan 1, 1970.

Date and Time Patterns:

Date and time formats are specified by date and time pattern strings. Within date and time pattern strings, all unquoted ASCII letters [A-Za-z] are reserved as pattern letters representing calendar fields. Simple Date Format supports the date and time formatting algorithm and pattern letters defined by UTS#35 Unicode Locale Data Markup Language (LDML) and further documented for ICU in the ICU User Guide. The following pattern letters are currently available (note that the actual values depend on CLDR and may change from the examples shown here):

Field Sym. No. Example Description
era G 1..3 AD Era - Replaced with the Era string for the current date. One to three letters for the abbreviated form, four letters for the long (wide) form, five for the narrow form.
4 Anno Domini
5 A
year y 1..n 1996 Year. Normally the length specifies the padding, but for two letters it also specifies the maximum length. Example:
Year y yy yyy yyyy yyyyy
AD 1 1 01 001 0001 00001
AD 12 12 12 012 0012 00012
AD 123 123 23 123 0123 00123
AD 1234 1234 34 1234 1234 01234
AD 12345 12345 45 12345 12345 12345
Y 1..n 1997 Year (in "Week of Year" based calendars). Normally the length specifies the padding, but for two letters it also specifies the maximum length. This year designation is used in ISO year-week calendar as defined by ISO 8601, but can be used in non-Gregorian based calendar systems where week date processing is desired. May not always be the same value as calendar year.
u 1..n 4601 Extended year. This is a single number designating the year of this calendar system, encompassing all supra-year fields. For example, for the Julian calendar system, year numbers are positive, with an era of BCE or CE. An extended year value for the Julian calendar system assigns positive values to CE years and negative values to BCE years, with 1 BCE being year 0.
U 1..3 &#30002;&#23376; Cyclic year name. Calendars such as the Chinese lunar calendar (and related calendars) and the Hindu calendars use 60-year cycles of year names. Use one through three letters for the abbreviated name, four for the full (wide) name, or five for the narrow name (currently the data only provides abbreviated names, which will be used for all requested name widths). If the calendar does not provide cyclic year name data, or if the year value to be formatted is out of the range of years for which cyclic name data is provided, then numeric formatting is used (behaves like 'y').
4 (currently also &#30002;&#23376;)
5 (currently also &#30002;&#23376;)
quarter Q 1..2 02 Quarter - Use one or two for the numerical quarter, three for the abbreviation, or four for the full (wide) name (five for the narrow name is not yet supported).
3 Q2
4 2nd quarter
q 1..2 02 Stand-Alone Quarter - Use one or two for the numerical quarter, three for the abbreviation, or four for the full name (five for the narrow name is not yet supported).
3 Q2
4 2nd quarter
month M 1..2 09 Month - Use one or two for the numerical month, three for the abbreviation, four for the full (wide) name, or five for the narrow name. With two ("MM"), the month number is zero-padded if necessary (e.g. "08")
3 Sep
4 September
5 S
L 1..2 09 Stand-Alone Month - Use one or two for the numerical month, three for the abbreviation, four for the full (wide) name, or 5 for the narrow name. With two ("LL"), the month number is zero-padded if necessary (e.g. "08")
3 Sep
4 September
5 S
week w 1..2 27 Week of Year. Use "w" to show the minimum number of digits, or "ww" to always show two digits (zero-padding if necessary, e.g. "08").
W 1 3 Week of Month
day d 1..2 1 Date - Day of the month. Use "d" to show the minimum number of digits, or "dd" to always show two digits (zero-padding if necessary, e.g. "08").
D 1..3 345 Day of year
F 1 2 Day of Week in Month. The example is for the 2nd Wed in July
g 1..n 2451334 Modified Julian day. This is different from the conventional Julian day number in two regards. First, it demarcates days at local zone midnight, rather than noon GMT. Second, it is a local number; that is, it depends on the local time zone. It can be thought of as a single number that encompasses all the date-related fields.
week
day
E 1..3 Tue Day of week - Use one through three letters for the short day, four for the full (wide) name, five for the narrow name, or six for the short name.
4 Tuesday
5 T
6 Tu
e 1..2 2 Local day of week. Same as E except adds a numeric value that will depend on the local starting day of the week, using one or two letters. For this example, Monday is the first day of the week.
3 Tue
4 Tuesday
5 T
6 Tu
c 1 2 Stand-Alone local day of week - Use one letter for the local numeric value (same as 'e'), three for the short day, four for the full (wide) name, five for the narrow name, or six for the short name.
3 Tue
4 Tuesday
5 T
6 Tu
period a 1 AM AM or PM
hour h 1..2 11 Hour [1-12]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern generation, it should match the 12-hour-cycle format preferred by the locale (h or K); it should not match a 24-hour-cycle format (H or k). Use hh for zero padding.
H 1..2 13 Hour [0-23]. When used in skeleton data or in a skeleton passed in an API for flexible data pattern generation, it should match the 24-hour-cycle format preferred by the locale (H or k); it should not match a 12-hour-cycle format (h or K). Use HH for zero padding.
K 1..2 0 Hour [0-11]. When used in a skeleton, only matches K or h, see above. Use KK for zero padding.
k 1..2 24 Hour [1-24]. When used in a skeleton, only matches k or H, see above. Use kk for zero padding.
minute m 1..2 59 Minute. Use "m" to show the minimum number of digits, or "mm" to always show two digits (zero-padding if necessary, e.g. "08").
second s 1..2 12 Second. Use "s" to show the minimum number of digits, or "ss" to always show two digits (zero-padding if necessary, e.g. "08").
S 1..n 3450 Fractional Second - truncates (like other time fields) to the count of letters when formatting. Appends zeros if more than 3 letters specified. Truncates at three significant digits when parsing. (example shows display using pattern SSSS for seconds value 12.34567)
A 1..n 69540000 Milliseconds in day. This field behaves exactly like a composite of all time-related fields, not including the zone fields. As such, it also reflects discontinuities of those fields on DST transition days. On a day of DST onset, it will jump forward. On a day of DST cessation, it will jump backward. This reflects the fact that is must be combined with the offset field to obtain a unique local time value.
zone z 1..3 PDT The short specific non-location format. Where that is unavailable, falls back to the short localized GMT format ("O").
4 Pacific Daylight Time The long specific non-location format. Where that is unavailable, falls back to the long localized GMT format ("OOOO").
Z 1..3 -0800 The ISO8601 basic format with hours, minutes and optional seconds fields. The format is equivalent to RFC 822 zone format (when optional seconds field is absent). This is equivalent to the "xxxx" specifier.
4 GMT-8:00 The long localized GMT format. This is equivalent to the "OOOO" specifier.
5 -08:00
-07:52:58
The ISO8601 extended format with hours, minutes and optional seconds fields. The ISO8601 UTC indicator "Z" is used when local time offset is 0. This is equivalent to the "XXXXX" specifier.
O 1 GMT-8 The short localized GMT format.
4 GMT-08:00 The long localized GMT format.
v 1 PT The short generic non-location format. Where that is unavailable, falls back to the generic location format ("VVVV"), then the short localized GMT format as the final fallback.
4 Pacific Time The long generic non-location format. Where that is unavailable, falls back to generic location format ("VVVV").
V 1 uslax The short time zone ID. Where that is unavailable, the special short time zone ID unk (Unknown Zone) is used.
Note: This specifier was originally used for a variant of the short specific non-location format, but it was deprecated in the later version of the LDML specification. In CLDR 23/ICU 51, the definition of the specifier was changed to designate a short time zone ID.
2 America/Los_Angeles The long time zone ID.
3 Los Angeles The exemplar city (location) for the time zone. Where that is unavailable, the localized exemplar city name for the special zone Etc/Unknown is used as the fallback (for example, "Unknown City").
4 Los Angeles Time The generic location format. Where that is unavailable, falls back to the long localized GMT format ("OOOO"; Note: Fallback is only necessary with a GMT-style Time Zone ID, like Etc/GMT-830.)
This is especially useful when presenting possible timezone choices for user selection, since the naming is more uniform than the "v" format.
X 1 -08
+0530
Z
The ISO8601 basic format with hours field and optional minutes field. The ISO8601 UTC indicator "Z" is used when local time offset is 0.
2 -0800
Z
The ISO8601 basic format with hours and minutes fields. The ISO8601 UTC indicator "Z" is used when local time offset is 0.
3 -08:00
Z
The ISO8601 extended format with hours and minutes fields. The ISO8601 UTC indicator "Z" is used when local time offset is 0.
4 -0800
-075258
Z
The ISO8601 basic format with hours, minutes and optional seconds fields. (Note: The seconds field is not supported by the ISO8601 specification.) The ISO8601 UTC indicator "Z" is used when local time offset is 0.
5 -08:00
-07:52:58
Z
The ISO8601 extended format with hours, minutes and optional seconds fields. (Note: The seconds field is not supported by the ISO8601 specification.) The ISO8601 UTC indicator "Z" is used when local time offset is 0.
x 1 -08
+0530
The ISO8601 basic format with hours field and optional minutes field.
2 -0800 The ISO8601 basic format with hours and minutes fields.
3 -08:00 The ISO8601 extended format with hours and minutes fields.
4 -0800
-075258
The ISO8601 basic format with hours, minutes and optional seconds fields. (Note: The seconds field is not supported by the ISO8601 specification.)
5 -08:00
-07:52:58
The ISO8601 extended format with hours, minutes and optional seconds fields. (Note: The seconds field is not supported by the ISO8601 specification.)

Any characters in the pattern that are not in the ranges of ['a'..'z'] and ['A'..'Z'] will be treated as quoted text. For instance, characters like ':', '.', ' ', '#' and '@' will appear in the resulting time text even they are not embraced within single quotes.

A pattern containing any invalid pattern letter will result in a failing UErrorCode result during formatting or parsing.

When parsing a date string using the abbreviated year pattern ("y" or "yy"), Simple Date Format must interpret the abbreviated year relative to some century. It does this by adjusting dates to be within 80 years before and 20 years after the time the Simple Date Format instance is created. For example, using a pattern of "MM/dd/yy" and a Simple Date Format instance created on Jan 1, 1997, the string "01/11/12" would be interpreted as Jan 11, 2012 while the string "05/04/64" would be interpreted as May 4, 1964. During parsing, only strings consisting of exactly two digits will be parsed into the default century. Any other numeric string, such as a one digit string, a three or more digit string, or a two digit string that isn't all digits (for example, "-1"), is interpreted literally. So "01/02/3" or "01/02/003" are parsed (for the Gregorian calendar), using the same pattern, as Jan 2, 3 AD. Likewise (but only in lenient parse mode, the default) "01/02/-3" is parsed as Jan 2, 4 BC.

If the year pattern has more than two 'y' characters, the year is interpreted literally, regardless of the number of digits. So using the pattern "MM/dd/yyyy", "01/11/12" parses to Jan 11, 12 A.D.

When numeric fields abut one another directly, with no intervening delimiter characters, they constitute a run of abutting numeric fields. Such runs are parsed specially. For example, the format "HHmmss" parses the input text "123456" to 12:34:56, parses the input text "12345" to 1:23:45, and fails to parse "1234". In other words, the leftmost field of the run is flexible, while the others keep a fixed width. If the parse fails anywhere in the run, then the leftmost field is shortened by one character, and the entire run is parsed again. This is repeated until either the parse succeeds or the leftmost field is one character in length. If the parse still fails at that point, the parse of the run fails.

For time zones that have no names, Simple Date Format uses strings GMT+hours:minutes or GMT-hours:minutes.

The calendar defines what is the first day of the week, the first week of the year, whether hours are zero based or not (0 vs 12 or 24), and the timezone. There is one common number format to handle all the numbers; the digit count is handled programmatically according to the pattern.

Functions

int i18n_simple_date_fmt_create (i18n_simple_date_fmt_h *simple_date_fmt)
 Creates a simple date format object using the default pattern for the default locale.
int i18n_simple_date_fmt_create_from_pattern (const char *pattern, i18n_simple_date_fmt_h *simple_date_fmt)
 Creates a simple date format object using the given pattern and the default locale.
int i18n_simple_date_fmt_create_from_pattern_override (const char *pattern, const char *override, i18n_simple_date_fmt_h *simple_date_fmt)
 Creates a simple date format object using the given pattern, numbering system override, and the default locale.
int i18n_simple_date_fmt_create_from_pattern_locale (const char *pattern, const char *locale, i18n_simple_date_fmt_h *simple_date_fmt)
 Creates a simple date format object using the given pattern and locale.
int i18n_simple_date_fmt_create_from_pattern_override_locale (const char *pattern, const char *override, const char *locale, i18n_simple_date_fmt_h *simple_date_fmt)
 Creates a simple date format object using the given pattern, numbering system override and locale.
int i18n_simple_date_fmt_destroy (i18n_simple_date_fmt_h simple_date_fmt)
 Destroys the given simple date format object.
int i18n_simple_date_fmt_clone (i18n_simple_date_fmt_h simple_date_fmt, i18n_simple_date_fmt_h *clone)
 Creates a clone of the given simple_date_fmt object.
int i18n_simple_date_fmt_equals (i18n_simple_date_fmt_h simple_date_fmt_1, i18n_simple_date_fmt_h simple_date_fmt_2, bool *equals)
 Checks whether two simple date format objects are equal.
int i18n_simple_date_fmt_format_with_field_position (i18n_simple_date_fmt_h simple_date_fmt, i18n_ucalendar_h calendar, char **append_to, i18n_field_position_h field_position)
 Formats a date or time (which is the standard millis since 24:00 GMT, Jan 1, 1970) using field position.
int i18n_simple_date_fmt_parse (i18n_simple_date_fmt_h simple_date_fmt, const char *source, i18n_parse_position_h parse_position, i18n_ucalendar_h *result)
 Parses a date/time string beginning at the given parse position.
int i18n_simple_date_fmt_set_2digit_year_start (i18n_simple_date_fmt_h simple_date_fmt, i18n_udate udate)
 Sets the start i18n_udate used to interpret two-digit year strings.
int i18n_simple_date_fmt_get_2digit_year_start (i18n_simple_date_fmt_h simple_date_fmt, i18n_udate *udate)
 Gets the start i18n_udate used to interpret two-digit year strings.
int i18n_simple_date_fmt_to_pattern (i18n_simple_date_fmt_h simple_date_fmt, char **pattern)
 Returns a pattern string that describes given simple format date object.
int i18n_simple_date_fmt_to_localized_pattern (i18n_simple_date_fmt_h simple_date_fmt, char **localized_pattern)
 Returns a localized pattern string that describes given simple date format object.
int i18n_simple_date_fmt_apply_pattern (i18n_simple_date_fmt_h simple_date_fmt, const char *pattern)
 Applies the given unlocalized pattern string to this date format.
int i18n_simple_date_fmt_apply_localized_pattern (i18n_simple_date_fmt_h simple_date_fmt, const char *localized_pattern)
 Applies the given localized pattern string to this date format.
int i18n_simple_date_fmt_adopt_calendar (i18n_simple_date_fmt_h simple_date_fmt, i18n_ucalendar_h ucalendar)
 Sets the calendar to be used by this date format.
int i18n_simple_date_fmt_set_context (i18n_simple_date_fmt_h simple_date_fmt, i18n_udisplay_context_e value)
 Sets a particular i18n_udisplay_context_e value in the formatter, such as I18N_UDISPLAY_CONTEXT_CAPITALIZATION_FOR_STANDALONE.

Typedefs

typedef void * i18n_simple_date_fmt_h
 A simple date format handle.

Typedef Documentation

typedef void* i18n_simple_date_fmt_h

A simple date format handle.

Use i18n_simple_date_fmt_* functions to operate on i18n_simple_date_fmt_h objects.

Since :
5.0

Function Documentation

Sets the calendar to be used by this date format.

Initially, the default calendar for the specified or default locale is used. The caller should not delete the i18n_ucalendar_h object after it is adopted by this call. Adopting a new calendar will change to the default symbols.

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object
[in]ucalendarThe i18n_ucalendar_h object to be adopted
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
int i18n_simple_date_fmt_apply_localized_pattern ( i18n_simple_date_fmt_h  simple_date_fmt,
const char *  localized_pattern 
)

Applies the given localized pattern string to this date format.

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object
[in]localized_patternThe localized pattern to be applied
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
int i18n_simple_date_fmt_apply_pattern ( i18n_simple_date_fmt_h  simple_date_fmt,
const char *  pattern 
)

Applies the given unlocalized pattern string to this date format.

After this call, this formatter will format dates according to the new pattern.

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object
[in]patternThe pattern to be applied
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter

Creates a clone of the given simple_date_fmt object.

Since :
5.0
Remarks:
The clone object should be released by the caller with the i18n_simple_date_fmt_destroy() function.
Parameters:
[in]simple_date_fmtThe simple date format object to be cloned
[out]cloneThe created simple date format object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory

Creates a simple date format object using the default pattern for the default locale.

Since :
5.0
Remarks:
The created object should be released by the caller with the i18n_simple_date_fmt_destroy() function.
Parameters:
[out]simple_date_fmtThe created simple date format object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory
int i18n_simple_date_fmt_create_from_pattern ( const char *  pattern,
i18n_simple_date_fmt_h simple_date_fmt 
)

Creates a simple date format object using the given pattern and the default locale.

Since :
5.0
Remarks:
The created object should be released by the caller with the i18n_simple_date_fmt_destroy() function.
Parameters:
[in]patternThe pattern for the simple date format
[out]simple_date_fmtThe created simple date format object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory
int i18n_simple_date_fmt_create_from_pattern_locale ( const char *  pattern,
const char *  locale,
i18n_simple_date_fmt_h simple_date_fmt 
)

Creates a simple date format object using the given pattern and locale.

Since :
5.0
Remarks:
The created object should be released by the caller with the i18n_simple_date_fmt_destroy() function.
Parameters:
[in]patternThe pattern for the simple date format
[in]localeThe given locale
[out]simple_date_fmtThe created simple date format object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory
int i18n_simple_date_fmt_create_from_pattern_override ( const char *  pattern,
const char *  override,
i18n_simple_date_fmt_h simple_date_fmt 
)

Creates a simple date format object using the given pattern, numbering system override, and the default locale.

Since :
5.0
Remarks:
The created object should be released by the caller with the i18n_simple_date_fmt_destroy() function.
Parameters:
[in]patternThe pattern for the simple date format
[in]overrideThe override string
[out]simple_date_fmtThe created simple date format object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory
int i18n_simple_date_fmt_create_from_pattern_override_locale ( const char *  pattern,
const char *  override,
const char *  locale,
i18n_simple_date_fmt_h simple_date_fmt 
)

Creates a simple date format object using the given pattern, numbering system override and locale.

Since :
5.0
Remarks:
The created object should be released by the caller with the i18n_simple_date_fmt_destroy() function.
Parameters:
[in]patternThe pattern for the simple date format
[in]overrideThe numbering system override
[in]localeThe given locale
[out]simple_date_fmtThe created simple date format object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory

Destroys the given simple date format object.

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object to destroy
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
int i18n_simple_date_fmt_equals ( i18n_simple_date_fmt_h  simple_date_fmt_1,
i18n_simple_date_fmt_h  simple_date_fmt_2,
bool *  equals 
)

Checks whether two simple date format objects are equal.

Since :
5.0
Parameters:
[in]simple_date_fmt_1The first simple date format object
[in]simple_date_fmt_2The second simple date format format object
[out]equalstrue if simple_date_fmt_1 is equal to simple_date_fmt_2, false otherwise
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
int i18n_simple_date_fmt_format_with_field_position ( i18n_simple_date_fmt_h  simple_date_fmt,
i18n_ucalendar_h  calendar,
char **  append_to,
i18n_field_position_h  field_position 
)

Formats a date or time (which is the standard millis since 24:00 GMT, Jan 1, 1970) using field position.

Since :
5.0
Parameters:
[in]simple_date_fmtThe format object for which date or time will be formatted
[in]calendarCalendar set to the date and time to be formatted into a date/time string
[in,out]append_toInput/output parameter to receive the result. The result is appended to the existing contents.
[in]field_positionThe i18n_field_position_h object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory

Gets the start i18n_udate used to interpret two-digit year strings.

When dates are parsed having 2-digit year strings, they are placed within a assumed range of 100 years starting on the two digit start date. For example, the string "24-jan-17" may be in the year 1817, 1917, 2017, or some other year. Simple date format chooses a year so that the resultant date is on or after the two digit start date and within 100 years of the two digit start date. By default, the two digit start date is set to 80 years before the current time at which a i18n_simple_date_fmt_h object is created.

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object
[out]udateThe start date of the given i18n_simple_date_fmt_h object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
int i18n_simple_date_fmt_parse ( i18n_simple_date_fmt_h  simple_date_fmt,
const char *  source,
i18n_parse_position_h  parse_position,
i18n_ucalendar_h result 
)

Parses a date/time string beginning at the given parse position.

For example, a time text "07/10/96 4:5 pm, pdt" will be parsed into a date that is equivalent to date 837039928046. By default, parsing is lenient: if the input is not in the form used by this object's format method but can still be parsed as a date, then the parse succeeds. Clients may insist on strict adherence to the format by calling set_lenient(false).

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object
[in]sourceThe date/time string to be parsed
[in,out]parse_positionOn input, the position at which to start parsing; on output, the position at which parsing terminated, or the start position if the parse failed
[in,out]resultA i18n_ucalendar_h object set on input to the date and time to be used for missing values in the date/time string being parsed, and set on output to the parsed date/time. When the calendar type is different from the internal calendar held by this i18n_simple_date_fmt_h object instance, the internal calendar will be cloned to a work calendar set to the same milliseconds and time zone as the cal parameter, field values will be parsed based on the work calendar, then the result (milliseconds and time zone) will be set in this calendar.
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter

Sets the start i18n_udate used to interpret two-digit year strings.

When dates are parsed having 2-digit year strings, they are placed within a assumed range of 100 years starting on the two digit start date. For example, the string "24-jan-17" may be in the year 1817, 1917, 2017, or some other year. Simple date format chooses a year so that the resultant date is on or after the two digit start date and within 100 years of the two digit start date. by default, the two digit start date is set to 80 years before the current time at which a i18n_simple_date_fmt_h object is created.

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object
[in]udateThe start date of the given i18n_simple_date_fmt_h object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter

Sets a particular i18n_udisplay_context_e value in the formatter, such as I18N_UDISPLAY_CONTEXT_CAPITALIZATION_FOR_STANDALONE.

Since :
5.0
Parameters:
[in]simple_date_fmtThe simple date format object
[in]valueThe i18n_udisplay_context_e value to set
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
int i18n_simple_date_fmt_to_localized_pattern ( i18n_simple_date_fmt_h  simple_date_fmt,
char **  localized_pattern 
)

Returns a localized pattern string that describes given simple date format object.

In most cases, this will return the same thing as i18n_simple_date_fmt_to_pattern(), but a locale can specify characters to use in pattern descriptions in place of the ones described in this class's class documentation. Presumably, letters that would be more mnemonic in that locale's language. This function would produce a pattern using those letters.

Since :
5.0
Remarks:
The returned localized pattern should be freed by the caller with free() function.
Parameters:
[in]simple_date_fmtThe simple date format object
[out]localized_patternThe localized pattern from the given simple date object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
int i18n_simple_date_fmt_to_pattern ( i18n_simple_date_fmt_h  simple_date_fmt,
char **  pattern 
)

Returns a pattern string that describes given simple format date object.

Since :
5.0
Remarks:
The returned pattern should be freed by the caller with free() function.
Parameters:
[in]simple_date_fmtThe simple date format object
[out]patternThe pattern from the given simple date object
Returns:
0 on success, otherwise a negative error value
Return values:
I18N_ERROR_NONESuccessful
I18N_ERROR_INVALID_PARAMETERInvalid function parameter
I18N_ERROR_OUT_OF_MEMORYOut of memory