IsUpper( string:string ) → bool
Returns True if string consists entirely of uppercase letters, otherwise returns False.
Example:
Output(IsUpper("ABCDE")) --> true Output(IsUpper("ABcDE")) --> false
See also: IsAlpha IsDigit IsLower IsPunct IsSpace