tolower
Lower case conversion.
📝Syntax
res = tolower(str)
📥Input Arguments
Parameter Description
str a row character array, a cell of strings or an string array.
📤Output Arguments
Parameter Description
res lower case equivalent
📄Description

tolower converts a string to lower case.

💡Examples
tolower('NelSon')
tolower(["NelSon", "is", "open"])
🔗See Also
toupper
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub