TOUPPER†
Format†
TOUPPER( string [ , locale ] )
Function†
- Returns a string with all lowercase letters converted to uppercase.
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†
- If successful, the converted string
- If unsuccessful, nothing is returned (VOID)
Related†
Version†
- YAYA: Available from the start (locale: Tc569-5)
- Available in AYA5.8
Example†
_str = 'sAkuRa' // Assign a string
_str = TOUPPER( _str )
_str // The string "SAKURA" is output