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