Microsoft® Visual Basic® Scripting Edition UCase Function |
Language Reference Version 1 |
Returns a string that has been converted to uppercase.
UCase(string)The string argument is any valid string expression. If string contains Null, Null is returned.
Only lowercase letters are converted to uppercase; all uppercase letters and nonletter characters remain unchanged.The following example uses the UCase function to return an uppercase version of a string:
Dim MyWord MyWord = UCase("Hello World") ' Returns "HELLO WORLD".