We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Based on the documentation, I would've expected the z time format to match Z indicating the Zulu (UTC) time zone. However, I get:
z
Z
Zulu
> library(lubridate) > fast_strptime("2014-03-12T09:32:44Z", "%Y-%m-%dT%H:%M:%OS%Ou") [1] "2014-03-12 09:32:44 UTC" > fast_strptime("2014-03-12T09:32:44Z", "%Y-%m-%dT%H:%M:%OS%z") [1] NA
The text was updated successfully, but these errors were encountered:
This is a bug. Thanks.
parse_date_time2 works though:
parse_date_time2
> parse_date_time2("2014-03-12T09:32:44Z", "YmdHMSz") [1] "2014-03-12 09:32:44 UTC" >
Sorry, something went wrong.
375594a
No branches or pull requests
Based on the documentation, I would've expected the
z
time format to matchZ
indicating theZulu
(UTC) time zone. However, I get:The text was updated successfully, but these errors were encountered: