Lcase: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
LCase(''string'')
LCase(''string'')


Line 5: Line 7:
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 (Basic) ==


<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"
Line 23: Line 25:
== Related Items ==
== Related Items ==


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


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Strings]]
[[Category:BASIC Functions]]

Latest revision as of 15:29, 25 March 2019

This function is for BASIC compatibility. It is not available in pure JavaScript projects.

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)

Output

JIM lowercase is jim

Related Items

UCase