UCase: Difference between revisions

From NSB App Studio
Jump to navigation Jump to search
No edit summary
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
''This function is for BASIC compatibility. It is not available in pure JavaScript projects.''
UCase(''string'')
UCase(''string'')


Line 5: Line 7:
UCase returns string with all of its lowercase characters converted to uppercase. The required parameter, ''string'', is any valid string expression.
UCase returns string with all of its lowercase characters converted to uppercase. The required parameter, ''string'', is any valid string expression.


== Example ==
== Example (Basic) ==


<pre>
<pre>
Line 23: Line 25:
== Related Items ==
== Related Items ==


[[lcase|LCASE]]
[[lcase|LCase]]


[[Category:Language Reference]]
[[Category:Language Reference]]
[[Category:Strings]]
[[Category:BASIC Functions]]

Latest revision as of 15:38, 25 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

Related Items

LCase