IsUpper(
     string:string
)
bool

Arguments

string

String to test.

Return value

True if string consists only of uppercase letters.

Description

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