hi to all regex master out there, I know you have a work around with regards to my problem. hehe
02-May-2011
or
22-May-2011
or
2-May-2011
(dd-MMM-yyyy) with yyyy not accepting any other characters than digit
|
That's assuming that the month is a 3-letter version: eg, Jan, Feb, Mar. Updated version to match the changes to the question:
As has been mentioned, this won't actually validate the date, it'll just validate that the string matches the format of: 1 or 2 numbers, a dash, 3 letters, a dash, 4 numbers. |
|||||||||||
|
Is probably what you're looking for. Although the technically correct one is:
Sorry for not validating February and the number of days in a month, but there are some things just not worth doing in regular expressions ;) |
|||||||||||
|
|
Use SimpleDateFormat instead of using regexp. Read the tutorial at http://download.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html for more info. |
|||
|