Lcase: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
No edit summary
Line 23: Line 23:
== Related Items ==
== Related Items ==


[[ucase|UCASE]]
[[ucase|UCase]]


[[Category:Language Reference]]
[[Category:Language Reference]]

Revision as of 01:15, 24 August 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