TOLOWER†
Format†
TOLOWER( string [ , locale ] )
Function†
- Returns a string with all uppercase letters converted to lowercase.
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 = TOLOWER( _str )
_str // The string "sakura" is output