Home / lang / lcase 
LCase$
Syntax
sResult = LCase$ ( sExpr AS String ) AS String
sResult = Lower$ ( sExpr AS String ) AS String

Returns the String sExpr converted to lower case.

This function does not work with UTF-8 strings. It works only if all characters codes are ASCII characters in the range 1 to 127.

Example
print lower$("Jürgen")

jÃŒrgen

Example
PRINT LCase$("Gambas ALMOST Means BASIC !")

gambas almost means basic !


See also
String Functions