Lcase: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
(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...")
 
No edit summary
Line 1: Line 1:
LCASE(''string'')
LCase(''string'')


'''Description'''
== Description ==


LCASE returns string with all of its uppercase characters converted to lowercase. The required parameter, ''string'', is any valid string expression.
LCase returns string with all of its uppercase characters converted to lowercase. The required parameter, ''string'', is any valid string expression.


'''Example'''
== Example ==


<pre>
<pre>
REM LCASE Example
Rem LCase Example
'LCASE returnsstringwithalllowercasechars
'LCase returnsstringwithalllowercasechars
DIM Uncle
Dim Uncle
Uncle = "JIM"
Uncle = "JIM"
PRINT Uncle & " lowercase is " &LCASE(Uncle)
Print Uncle & " lowercase is " &LCASE(Uncle)
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
Line 21: Line 21:
</pre>
</pre>


'''Related Items'''
== Related Items ==


[[ucase|UCASE]]
[[ucase|UCASE]]
[[Category:Language Reference]]

Revision as of 01:59, 17 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