I'm just wondering if there is a way (maybe with regex) to validate that an input on a Java desktop app is exactly an string formated as: "YYYY-MM-DD".
I've searched but with no success.
Thank you
|
|
Use the following regular expression:
as in
With the |
|||||||
|
|
You need more than a e.g.
Unfortunately, |
|||||||||||
|
|
Putting it all together:
it's necessary to use both to validate format and value:
A ThreadLocal can be used to avoid the creation of a new SimpleDateFormat for each call. It is needed in a multithread context since the SimpleDateFormat is not thread safe:
(same can be done for a Matcher, that also is not thread safe) |
||||
|
|
|
This will do it regex:
Good luck! |
||||
|
|
|
Construct a SimpleDateFormat with the mask, and then call: SimpleDateFormat.parse(String s, ParsePosition p) |
|||
|
|
For fine control, consider an InputVerifier using the |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.