Closed
Description
Here is example of strings, those i want to format into some type of date.
"2020-02-04T09:07:13.851+0300"
"17.01.2022"
With Instant.parce("2020-02-04T09:07:13.851+0300")
throws exception could not be parsed, unparsed text found at index 26
And
LocalDate.parse( "17.01.2022")
throws Text '17.01.2022' could not be parsed at index 0
How to do it nicely?