tolower

Returns a string or cell array where each uppercase character of the input string, matrix or cell array is replaced by the corresponding lowercase character. Non-alphabetic characters in the input are not modified.

Syntax

R = tolower(s)

Inputs

s
Type: string | mat | cell

Outputs

R
Type: string | cell

Examples

String input:
R = tolower('Test 123')
R = test 123
Cell array input:
R = tolower({'Help Info:', 'TEST lowercase'})
R =
{
[1,1] help info:
[1,2] test lowercase
}