You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Kind of. You can't say, for example, 2022-10-25T0600. There are two separate kinds of ISO-8601 formats: the basic one (the one you're requesting) and the extended one (the one we support). You're right though that we should document in our parse functions that they only support the extended format.
It looks like parsing only works if the string contains
-
and:
characters, but these are actually optional in ISO8601.For example, this local date/time should parse fine, but doesn't:
LocalDateTime.parse("20221025T0600")
The text was updated successfully, but these errors were encountered: