<< sprintf | String type | str2double >> |
tf = startsWith(str, pattern) |
tf = startsWith(str, pattern,'IgnoreCase', true) |
tf = startsWith(str, pattern,'IgnoreCase', false) |
a string, string array or cell of strings.
a string to find.
a matrix of logical.
str = 'To make a mountain out of a molehill';
k = startsWith (str, 'in')
k = startsWith (str, 'to')
k = startsWith (str, 'to', 'IgnoreCase', true)
A = {'Nel', 'son'; 'Nelson', 'Modules'}
k = startsWith(A, 'Nel')
A = ["Nel", "son"; "Nelson", "Modules"];
k = startsWith(A, "Nel")
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET