LocalDateTime time = LocalDateTime.parse("27. April 2021 00:03:50 MESZ", DateTimeFormatter.ofPattern("dd. MMMM yyyy HH:mm:ss z"));
Trying to parse time string as shown above. 'z' in the pattern is not able to recognize "MESZ" time zone.
Can someone tell me if there is any other pattern I have to use to match "MESZ"?