UpperCaseQ
UpperCaseQ[string] yields True if all the characters in the string are uppercase letters, and yields False otherwise.
Examples
Test an uppercase string:
UpperCaseQ["HELLO"]
(* True *)Test a mixed case string:
UpperCaseQ["Hello"]
(* False *)Please visit the official Wolfram Language Reference for more details.