Lcase: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(Created page with "LCASE(''string'') '''Description''' LCASE returns string with all of its uppercase characters converted to lowercase. The required parameter, ''string'', is any valid string...")
(No difference)

Revision as of 17:25, 8 July 2012

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

REM LCASE Example
'LCASE returnsstringwithalllowercasechars
DIM Uncle
Uncle = "JIM"
PRINT Uncle & " lowercase is " &LCASE(Uncle)

Output

JIM lowercase is jim

Related Items

UCASE