GLBasic User Manual

Main sections

LCASE$()

down$ = LCASE$(text$)



Converts any uppercase characters in the string text$ to lowercase.

// UCASE$ - LCASE$
PRINT UCASE$("123 - miniMIN"), 0, 20
PRINT LCASE$("123 - MAXImax"), 0, 40
SHOWSCREEN
MOUSEWAIT


Output:
123 - MINIMIN
123 - maximax

See also...