Possible Duplicate:
Parse any date in Java
Suppose we have a string of date in a format (unknown to the user). Examples of acceptable dates that you can receive from a user:
yyyy-MM-dd/yy-MM-ddyyyy/MM/dd/'yy/MM/dddd/MM/yyyy/dd/MM/yyMM/dd/yyyy/MM/dd/yy`
Is there a library that accept a date in a string and returns a date format that can be used by SimpleDateFormat or Joda Time?
Thanks
dd/MM/yyyyis a very uncommon format (I believe it's even not official). Usually-is been used as separator for such pattern. – BalusC Jun 23 '11 at 9:06