Return 1 if a character is a lower case alphabetic character.
Syntax: x = islower(char)
|
x |
1 if char is a-z |
|
char |
The character to test |
Example:
Dim x as uByte
x=islower("Z") ' x=0
x=islower("z") ' x=1
Also See: