isupper

Return 1 if a character is an upper case alphabetic character.

Syntax: x = islower(char)

x 1 if char is A-Z
0 otherwise
char The character to test

Example:

Dim x as uByte
x=isupper("Z")   ' x=1
x=isupper("z")   ' x=0

Also See: