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

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

share|improve this question
4  
Do you want to allow any year, and also invalid numbers for months and days? 9999-99-99 for example? What about invalid dates like 2009-02-29? – Tim Pietzcker Jan 27 '10 at 19:29

7 Answers

up vote 5 down vote accepted

Use the following regular expression:

^\d{4}-\d{2}-\d{2}$

as in

if (str.matches("\\d{4}-\\d{2}-\\d{2}")) {
    ...
}

With the matches method, the anchors ^ and $ (beginning and end of string, respectively) are present implicitly.

share|improve this answer
2  
But this validates only the date format not the actual date is valid or not. I like the idea of @Steve B more or if remember correct, there should be a good validation available in commons validation package too. – Teja Kantamneni Jan 27 '10 at 19:46
Dates are hard. Although you can verify the FORMAT of the input you can't verify the CONTENT with a simple regex. Recommend you use a parser built for the task. – Chris Nava Jan 27 '10 at 21:26

You need more than a regex, for example "9999-99-00" isn't a valid date. There's a SimpleDateFormat class that's built to do this. More heavyweight, but more comprehensive.

e.g.

SimpleDateFormat format = new SimpleDateFormat("YYYY-MM-dd");

boolean isValidDate(string input) {
     try {
          format.parse(input);
          return true;
     }
     catch(ParseException e){
          return false;
     }
}

Unfortunately, SimpleDateFormat is both heavyweight and not thread-safe.

share|improve this answer
6  
don't forget to call setLenient(false) if you want the SimpleDateFormat reject invalid dates. Your code will accept "9999-99-00" (would be Wed Feb 28 00:00:00 CET 10007) – Carlos Heuberger Jan 27 '10 at 20:39
Thank you Carlos, I don't even knew that It will recognize inputs like 2009-20-20. Thanks :) – Sheldon Jan 27 '10 at 21:23
and another point: SimpleDateFormat does not check the format: "2010-1-8", "10-001-002", ... will be accepted – Carlos Heuberger Jan 28 '10 at 0:07
I think this should be "yyyy-MM-dd" – maloney Mar 11 at 15:25

Putting it all together:

  • REGEX doesn't validate values (like "2010-19-19")
  • SimpleDateFormat does not check format ("2010-1-2", "1-0002-003" are accepted)

it's necessary to use both to validate format and value:

public static boolean isValid(String text) {
    if (text == null || !text.matches("\\d{4}-[01]\\d-[0-3]\\d"))
        return false;
    SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
    df.setLenient(false);
    try {
        df.parse(text);
        return true;
    } catch (ParseException ex) {
        return false;
    }
}



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:

private static final ThreadLocal<SimpleDateFormat> format = new ThreadLocal<SimpleDateFormat>() {
    @Override
    protected SimpleDateFormat initialValue() {
        SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");
        df.setLenient(false);
        System.out.println("created");
        return df;
    }
};

public static boolean isValid(String text) {
    if (text == null || !text.matches("\\d{4}-[01]\\d-[0-3]\\d"))
        return false;
    try {
        format.get().parse(text);
        return true;
    } catch (ParseException ex) {
        return false;
    }
}

(same can be done for a Matcher, that also is not thread safe)

share|improve this answer

This will do it regex: "^((19|20)\\d\\d)-(0?[1-9]|1[012])-(0?[1-9]|[12][0-9]|3[01])$" This will take care of valid formats and valid dates. It will not validate the correct days of the month i.e. leap year.

String regex = "^((19|20)\\d\\d)-(0?[1-9]|1[012])-(0?[1-9]|[12][0-9]|3[01])$";

Assert.assertTrue("Date: matched.", Pattern.matches(regex, "2011-1-1"));
Assert.assertFalse("Date (month): not matched.", Pattern.matches(regex, "2011-13-1"));

Good luck!

share|improve this answer

Construct a SimpleDateFormat with the mask, and then call: SimpleDateFormat.parse(String s, ParsePosition p)

share|improve this answer
You can just call the 1-argument method parse(String) instead of the 2-argument one. _ _ _ And don't forget to call setLenient(false) if you want the SimpleDateFormat reject invalid dates. – Carlos Heuberger Jan 27 '10 at 20:39

Check out this example

share|improve this answer

For fine control, consider an InputVerifier using the SimpleDateFormat("YYYY-MM-dd") suggested by Steve B.

share|improve this answer

protected by Alan Moore Mar 3 '11 at 3:12

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.

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