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