UCase: Difference between revisions
Jump to navigation
Jump to search
Created page with "UCASE(''string'') '''Description''' UCASE returns string with all of its lowercase characters converted to uppercase. The required parameter, ''string'', is any valid string..." |
No edit summary |
||
Line 1: | Line 1: | ||
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 == | |||
<pre> | <pre> | ||
Rem UCase Example | |||
' | 'UCase returns string with all upper case chars | ||
Dim Vet | |||
Vet = "ned" | Vet = "ned" | ||
Print Vet & " uppercase is " & UCase(Vet) | |||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 21: | Line 21: | ||
</pre> | </pre> | ||
== Related Items == | |||
[[lcase|LCASE]] | [[lcase|LCASE]] | ||
[[Category:Language Reference]] |
Revision as of 04:09, 17 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