[Solved] java.text.ParseException: Unparseable date: “Augu 16, 1979” [duplicate]
The problem is that replace(“st”, “”) also removes the st ending of August, resulting in the input string seen in the error message. To handle this, you need to make sure the st suffix is right after a digit, so it’s part of the day value. You also need to handle all of 1st, 2nd, … Read more