Description:
Returns a string that has been converted to lowercase.
In the PROMOTIC system it is better to use the Pm.StringOper method.
Syntax:
String LCase(String string)
Parameters:
string | (String) Text string |
---|
Note:
Only uppercase letters are converted to lowercase. All lowercase letters and nonletter characters remain unchanged.
Example:
VBScriptSelect and copy to clipboard
Dim s
s = LCase("Hello World")
' Returns "hello world"