is this a valid java date string "2022-08-22T10:18:00.000 10:00"? date format can not parse this string

Viewed 69

I can parse the ff. date string with the format below.

"2022-08-20T00:03:00.000+10:00" -> "yyyy-MM-dd'T'HH:mm:ss.SSSXXX"

"2022-08-20T00:03:00.000 +10:00" -> "yyyy-MM-dd'T'HH:mm:ss.SSS XXX"

"2022-08-20T00:03:00.000 +10:00" -> "yyyy-MM-dd'T'HH:mm:ss.SSS X"

however, I cannot parse this "2022-08-22T10:18:00.000 10:00". time zone part does not have a +/- sign. I this a valid date string? Got this from a rest api response.

0 Answers
Related