How can you determine if a string is all caps with a regular expression. It can include punctuation and numbers, just no lower case letters.
The string contains a lowercase letter if the expression /[a-z]/ returns true, so simply perform this check, if it's false you have no lowercase letters.
/[a-z]/