UCase: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
== Related Items == | == Related Items == | ||
[[lcase| | [[lcase|LCase]] | ||
[[Category:Language Reference]] | [[Category:Language Reference]] |
Revision as of 01:51, 24 August 2012
UCase(string)
Description
UCase returns string with all of its lowercase characters converted to uppercase. The required parameter, string, is any valid string expression.
Example
Rem UCase Example 'UCase returns string with all upper case chars Dim Vet Vet = "ned" Print Vet & " uppercase is " & UCase(Vet)
Output
ned uppercase is NED