Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
2  
Please don't ask a question in one format, wait for answers and then change the format of the question. If you need to do that, please clearly mark as an edit in your question text. – Town May 13 '11 at 1:51
i dont know how to mark this question as edited, hehe:) – MarkJ May 13 '11 at 2:05

3 Answers

up vote 1 down vote accepted
[0-9]{1,2}/[a-zA-Z]{3}/[0-9]{4}

That's assuming that the month is a 3-letter version: eg, Jan, Feb, Mar.

Updated version to match the changes to the question:

[0-9]{1,2}-[a-zA-Z]{3}-[0-9]{4}

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.

share|improve this answer
oh yeah, will try it wait.. – MarkJ May 13 '11 at 1:40
someone can enter XYZ as month, it won't handle that. – Bhushan May 13 '11 at 1:46
alex's answer looks correct. You can experiment with the various options using nregex or Regex Hero. – retrodrone May 13 '11 at 1:48
Someone could enter 99/Poo/5000 I suppose... – Town May 13 '11 at 1:50
@retrodrone: I'd post the links to nregex and Regex Hero as a comment on the question as they're not pertinent to any specific answer. – Town May 13 '11 at 2:02
show 2 more comments
^\d{1,2}/[a-zA-Z]+/\d{4}$

Is probably what you're looking for. Although the technically correct one is:

/^([12]\d|3[01])/(Jan(uary)?|Feb(ruary)?|Mar(ch)?|Apr(il)?|May|June?|July?|Aug(ust)?|Sep(t(ember)?)?|Oct(ober)?|Nov(ember)?|Dec(ember)?)/\d{4}$/i

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 ;)

share|improve this answer
+1 for suggesting that that level of date validation is maybe better handled by something else ;) – Town May 13 '11 at 1:49
Looks like the OP changed the date format on all of us! To fix, change the /s (apart from leading & trailing in the second example, those are delimiters) to \-. – minitech May 13 '11 at 1:52
@minitech: Yep, -1 all round ;) You shouldn't need to escape the dash, just - should be enough. – Town May 13 '11 at 1:56
@minitech: I was just referring to the fact that all our answers are incorrect and therefore 'not useful' after the question was changed :) – Town May 13 '11 at 1:59
Sorry, stupid question :) – minitech May 13 '11 at 2:01
show 1 more comment

Use SimpleDateFormat instead of using regexp. Read the tutorial at http://download.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html for more info.

share|improve this answer
SIMPLEDATEFORMAT HAS A BUG!!, see this stackoverflow.com/questions/5985912/simpledateformat-bug. – MarkJ May 13 '11 at 1:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.