Lcase: Difference between revisions
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..." |
|||
(7 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'') | ||
== Description == | |||
'''Example | LCase returns string with all of its uppercase characters converted to lowercase. The required parameter, ''string'', is any valid string expression. | ||
== Example (Basic) == | |||
<pre> | <pre> | ||
Rem LCase Example | |||
' | 'LCase returns string with all lower case chars | ||
Dim Uncle | |||
Uncle = "JIM" | Uncle = "JIM" | ||
Print Uncle & " lowercase is " &LCASE(Uncle) | |||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 21: | Line 23: | ||
</pre> | </pre> | ||
== Related Items == | |||
[[ucase|UCase]] | |||
[[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