UCase: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.'' | |||
UCase(''string'') | UCase(''string'') | ||
Line 13: | Line 15: | ||
Vet = "ned" | Vet = "ned" | ||
Print Vet & " uppercase is " & UCase(Vet) | Print Vet & " uppercase is " & UCase(Vet) | ||
</pre> | </pre> | ||
Revision as of 17:56, 24 March 2019
This function is for BASIC compatibility. It is not available in pure JavaScript projects.
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 (Basic)
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