TOLOWER

Format

TOLOWER( 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 = TOLOWER( _str )
_str // The string "sakura" is output