Lcase

From NSB App Studio
Revision as of 20:52, 19 May 2013 by JwellsNB (talk | contribs) (Add javascript snippet)
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 (Basic)

Rem LCase Example
'LCase returnsstringwithalllowercasechars
Dim Uncle
Uncle = "JIM"
Print Uncle & " lowercase is " &LCASE(Uncle)

Example (JavaScript)

// LCase Example
/* LCase returnsstringwithalllowercasechars */

var Uncle;
Uncle = "JIM";
NSB.Print(Uncle + " lowercase is " + Uncle.toLowerCase());

Output

JIM lowercase is jim

Related Items

UCase