Development tools : Global functions : String category : upperCase
  
upperCase
Description
Converts a String to upper case.
Usage
Client side: Y
Server side: Y
Syntax
String upperCase(String string)
Argument
string
The string to be manipulated. The argument can be any string.
Return
Returns the String, converted to uppercase
Example
upperCase("Hello")
returns "HELLO".
Go up to
String category