len = strlength(ce)
| Parameter | Description |
|---|---|
| ce | a string, string array or cell of strings. |
| Parameter | Description |
|---|---|
| len | a matrix of integer values: length of strings. |
strlength returns length of strings.
str = 'To make a mountain out of a molehill';
k = strlength(str)
A = {'Nel', 'son'; 'Toolboxes', 'Modules'}
k = strlength(A)
B = ["Nel", NaN, "son"; "is", "open", "source"];
k = strlength(B)
| Version | Description |
|---|---|
| 1.0.0 | initial version |