stri_datetime_fstr: Convert strptime-Style Format Strings¶
Description¶
A function to convert strptime
/strftime
-style format strings to ICU format strings that may be used in stri_datetime_parse and stri_datetime_format functions.
Usage¶
stri_datetime_fstr(x)
Arguments¶
|
character vector consisting of date/time format strings |
Details¶
For more details on conversion specifiers please refer to the manual page of strptime
. Most of the formatters of the form %x
, where x
is a letter, are supported. Moreover, each %%
is replaced with %
.
Warnings are given in case of %x
, %X
, %u
, %w
, %g
, %G
, %c
, %U
and %W
as in such circumstances either ICU does not support the functionality requested using the format-strings API or there are some inconsistencies between base R and ICU.
Value¶
Returns a character vector.
See Also¶
Other datetime: stri_datetime_add(), stri_datetime_create(), stri_datetime_fields(), stri_datetime_format(), stri_datetime_now(), stri_datetime_symbols(), stri_timezone_get(), stri_timezone_info(), stri_timezone_list()
Examples¶
stri_datetime_fstr('%Y-%m-%d %H:%M:%S')