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..." |
No edit summary |
||
Line 1: | Line 1: | ||
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 == | |||
<pre> | <pre> | ||
Rem LCase Example | |||
' | 'LCase returnsstringwithalllowercasechars | ||
Dim Uncle | |||
Uncle = "JIM" | Uncle = "JIM" | ||
Print Uncle & " lowercase is " &LCASE(Uncle) | |||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 21: | Line 21: | ||
</pre> | </pre> | ||
== 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