Table of Contents

tolower

int tolower(int c)

Description

Returns the lowercase version of c. If c is not an ASCII letter, it is returned unchanged.

To change the case of a whole string, use StrToLower.

Examples

tolower('A') -> 'a'
tolower('a') -> 'a'
tolower('/') -> '/' // not a letter
tolower('Ä') -> 'Ä' // non-ASCII character

See also

toupper