Lcase

From NSB App Studio
Revision as of 17:25, 8 July 2012 by Brendon (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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