Lcase: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
Line 9: Line 9:
<pre>
<pre>
Rem LCase Example
Rem LCase Example
'LCase returnsstringwithalllowercasechars
'LCase returns string with all lower case chars
Dim Uncle
Dim Uncle
Uncle = "JIM"
Uncle = "JIM"

Revision as of 20:54, 19 May 2013

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)

Example (JavaScript)

// LCase Example
/* toLowerCase returns string with all lower case chars */

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

Output

JIM lowercase is jim

Related Items

UCase