LCase$

Result = LCase$ ( Expr AS String ) AS String Result = Lower$ ( Expr AS String ) AS String

Returns the String Expr converted to lower case.

Examples

PRINT LCase$("Gambas ALMOST Means BASIC !")
gambas almost means basic !

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.

Print Lower$("ÏÁÂÃÄÅÆÇÈÉÊË")
ÏÁÂÃÄÅÆÇÈÉÊË

Use String.LCase instead.

See also