Checks if string contains at least one Capital Letter
static bool hasCapitalletter(String s) => hasMatch(s, '[A-Z]');