findstr
(Not recommended) Find string within another, longer string
Syntax
Description
k = findstr(
searches the longer of
the two input arguments for any occurrences of the shorter argument and returns the starting
index of each occurrence. If it finds no occurrences, then str1,str2
)findstr
returns the empty array, []
. The input arguments str1
and str2
can be character vectors or string scalars.
findstr
is case sensitive. Any leading and trailing blanks in either
input argument are explicitly included in the comparison.
Unlike with the contains
or strfind
functions, the order of the input arguments to
findstr
is not important. This can be useful if you are not certain
which of the two input arguments is the longer one.
Examples
Input Arguments
Extended Capabilities
Version History
Introduced before R2006a