UCase: Difference between revisions

From NSB App Studio
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'')
UCase(''string'')


'''Description'''
== Description ==


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 ==


<pre>
<pre>
REM UCASE Example
Rem UCase Example
'UCASE returnsstringwithalluppercasechars
'UCase returns string with all upper case chars
DIM Vet
Dim Vet
Vet = "ned"
Vet = "ned"
PRINT Vet & " uppercase is " & UCASE(Vet)
Print Vet & " uppercase is " & UCase(Vet)
</pre>
</pre>


'''Output'''
== Output ==


<pre>
<pre>
Line 21: Line 21:
</pre>
</pre>


'''Related Items'''
== 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

Related Items

LCASE