tf = endsWith(str, pattern)
tf = endsWith(str, pattern,'IgnoreCase', true)
tf = endsWith(str, pattern,'IgnoreCase', false)
| Parameter | Description |
|---|---|
| str | a string, string array or cell of strings. |
| pattern | a string to find. |
| Parameter | Description |
|---|---|
| tf | a matrix of logical. |
endsWith returns true if str ends with pattern.
str = 'To make a mountain out of a molehill';
k = endsWith (str, 'hill')
k = endsWith (str, 'molehill')
k = endsWith (str, 'Hill', 'IgnoreCase', true)
A = {'Nel', 'son'; 'Nelson', 'Modules'}
k = endsWith(A, 'son')
A = ["Nel", "son"; "Nelson", "Modules"]
k = endsWith(A, "son")
| Version | Description |
|---|---|
| 1.0.0 | initial version |