string to parse
string in C strftime function format.
timezone for date
used locale
parsed SysTime or throws DateParseException exception if there are any errors.
auto locale = initDateformatLocale("C"); ... auto date = SysTime(DateTime(2020, 3, 8, 14, 33, 52), UTC()); assert(parseSysTime("Sun Mar 8 14:33:52 2020 UTC", "%c") == date);
Parse string to SysTime with standard string representation.