lCase$()

Converts all string's character to lowercase. You can omit the dollar character so you can alternatively write it as lCase() .


Syntax:
string = lCase$( string )
string = lCase( string )

Example:
a$ = "TEST STRING"
b$ = lCase( a$ )
print(b$)

See also uCase$() command.