RETURNS THE STRING CONVERTING STRING S TO LOWERCASE
ACTION
The function LOWER$(S) returns the string converting string S to lowercase.
Remark: the keyword LOWER$ ends by '$' : it means that the returned value is a string.
SYNTAX:
Result$=LOWER$(S)
USE ERROR EXAMPLE
print lower$("ABC")
print "abc"
LOWER$()
LOWER$(S)
SEE ALSO
INSERT$()
INSTR()
LEFT$()
LEN()
LTRIM$()
MID$()
RIGHT$()
RTRIM$()
STR$()
STRING$()
TRIM$()
UPPER$()