uCase
Top  Previous  Next

val = uCase(expr)

Returns a string that has been converted to uppercase.

Parameters
 
expr  
 
Any expression. If not string, converted to string.  

Example

 
a = Ucase(123)
' Returns "123".
a = Ucase("Hello")
' Returns "HELLO".