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
R = tolower('Test 123')
R = test 123
R = tolower({'Help Info:', 'TEST lowercase'})
R =
{
[1,1] help info:
[1,2] test lowercase
}