Lcase

From NSB App Studio
Revision as of 18:50, 11 September 2012 by Admin (talk | contribs) (→‎Related Items)
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