What is a good regex fo Java SimpleDateFormat pattern?

Story: I have problem with setting eclipse birth date format patter with DateTimeFormatValue, no exceptions(feedback form QA only). So, the eclipse birt by it's documentation says that they do support SimpleDateFormat, as because pattern in my application is predefined by user unput, I need some regex check for.. checking only right symbols just no enough. ("^[y|M|m|h|G|z|s|d|(at)|(aaa)|E|\\.|\\:|\\'|\\/|\\,|\\ ]*$")

Any ideas? Thank you!

link|improve this question

Don't you have to escape the back slashes? – Dr.Dredel Jan 20 '11 at 23:03
it`s just a specification of special symbols like ` and / and , – kislo_metal Jan 21 '11 at 14:06
Doctor is right, I think. You do have to escape backslashes since according to the Pattern javadoc, "Backslashes within string literals in Java source code are interpreted as required by the Java Language Specification as either Unicode escapes or other character escapes. **It is therefore necessary to double backslashes in string literals that represent regular expressions to protect them from interpretation by the Java bytecode compiler.** – mazaneicha Mar 12 '11 at 0:02
feedback

1 Answer

I would, if possible, not solve this in a single Regex. You should split the user's input. Eg: YYYY.mm.DD split into [YYYY],[.],[mm],[.],[DD]. Now you may check each group if its valid for your purpose. As you speak of Year of birth, you would not allow the hh:mm.ss or Day of year etc.

This allows you to give the user a response, e.g.: "Year definition is missing" or "Hours are not allowed".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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