Returns whether the input matches the regex pattern.
static bool matches(String regex, String input) { return input.isNotEmpty && RegExp(regex).hasMatch(input); }