Returns whether the input matches the date regex with pattern 'yyyy-MM-dd'.
static bool isDate(String input) { return matches(regexDate, input); }