Honestly, I'd ditch the Satu, and just parse from then on. You don't need it and can always use Calendar to figure out day of the week/month/year. See here for what StringUtils is.
String dateString = "Satu, 30 Octo 2010 06:00:00 EDT";
Map<String, String> weirdMonthMap = new HashMap<String, String>();
weirdMonthMap.put("Janu", "Jan");
//...
weirdMonthMap.put("Octo", "Oct");
for (String key: weirdMonthMap.keySet()) {
dateString = StringUtils.replace(dateString, key, weirdMonthMap.get(key));
}
String[] pieces = StringUtils.split(dateString, ',');
if (pieces.length != 2)
throw new IllegalArgumentException("Whoa! " + dateString);
dateString = pieces[1];
SimpleDateFormat format = new SimpleDateFormat(" dd MMM yyyy HH:mm:ss z");
System.out.println( format.parse(dateString) );
Satu, 30 Octo 2010 06:00:00 EDTtoSat, 30 Oct 2010 06:00:00 EDT, i.e. simply remove 3rd and 12th char. Make life simpler! (If you are fine with regex, you can generalize it as well using the position of,and char-type.) – Learner Feb 9 at 21:31