Syntax 

UCase[$](S$)


Group 

String 


Description 

Return a string from S$ where all the lowercase letters have been uppercased.


Parameters

Description

S$ 

Return the string value of this after all chars have been converted to uppercase. If this value is Null then Null is returned.


See Also 

LCase$( ), StrComp$( ), StrConv$( )


Example

Sub Main

    Debug.Print UCase$("Hello") '"HELLO"

End Sub