I am trying to validate following date format through regExp, but still i didn't get ant working solution-
ex.-
OCT-12-2011
FEB-06-1995
how can i do it using regexp.
Thanks in advance!!
|
I am trying to validate following date format through regExp, but still i didn't get ant working solution-
how can i do it using regexp. Thanks in advance!! |
||||
|
|
|
... not sure how strictly you want to do this.
|
|||
|
|
|
Date JS is the first hit on Google.
Sample code from their site:
The only downside is that it modifies the prototype of build-in EDIT: ragarding parsing Date values via RegExps.
Be very careful especially considering different date.toString() implementation in different browsers. Here's what
If you get those strings from the server and you feel that adding a library just for dates is an overhead you'll be fine with regular expressions. |
||||
|
|
|
Don't try to validate it very strictly using a regex. Check the format, using something like this:
Then, check each part to see whether that part is valid. |
|||
|
|
Depending on you requirements, the following could do:
Or more elaborate:
Or anything in between :) (You may even elaborate further on the year part.) |
|||
|
If you want to do it with a single regexp, you could use something like:
This will not match a date before JAN-01-1000 or after DEC-31-2999. Note: do not forget to check for invalid february dates like FEB-30-2011 |
|||
|
|