TOUPPER

Format

TOUPPER( string [ , locale ] )

Function

Arguments

string
The string to be converted.
locale
A locale string that can be used in setlocale, to be used during conversion. Defaults to C when omitted (just changes a-z to A-Z).

Return value

Related

Version

Example

_str = 'sAkuRa' // Assign a string
_str = TOUPPER( _str )
_str // The string "SAKURA" is output