islower

Return 1 if a character is a lower 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=islower("Z")   ' x=0
x=islower("z")   ' x=1

Also See: