Lcase

From NSB App Studio
Jump to navigation Jump to search

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

LCase(string)

Description

LCase returns string with all of its uppercase characters converted to lowercase. The required parameter, string, is any valid string expression.

Example (Basic)

Rem LCase Example
'LCase returns string with all lower case chars
Dim Uncle
Uncle = "JIM"
Print Uncle & " lowercase is " &LCASE(Uncle)

Output

JIM lowercase is jim

Related Items

UCase