tolower

Convert a character to lower case.

Syntax: x = tolower(char)

x

The lower case representation of the charaacter char

char

Required. Source character

 

Example:

Dim x as uByte
x=isalpha("Z")   ' x="z"
x=isalpha("*")   ' x=*

Also See: