lower
Convert string to lowercase.
Syntax
Section titled “Syntax”t = lower(str)Description
Section titled “Description”Returns str with all uppercase characters converted to lowercase. Other characters are unchanged. Applied elementwise to character arrays.
Example
Section titled “Example”lower('Hello World') % 'hello world'