res = tolower(str)
| Parameter | Description |
|---|---|
| str | a row character array, a cell of strings or an string array. |
| Parameter | Description |
|---|---|
| res | lower case equivalent |
tolower converts a string to lower case.
tolower('NelSon')
tolower(["NelSon", "is", "open"])
| Version | Description |
|---|---|
| 1.0.0 | initial version |