Compare strings (case insensitive)
compares tf
= strcmpi(s1,s2
)s1
and s2
,
ignoring any differences in letter case. The function returns 1
(true
)
if the two are identical and 0
(false
)
otherwise. Text is considered identical if the size and content of
each are the same, aside from case. The return result tf
is
of data type logical
.
The input arguments can be any combination of string arrays, character vectors, and cell arrays of character vectors.
The strcmpi
function is intended
for comparison of text. If used on an unsupported data type, strcmpi
always
returns 0
.
For case-sensitive text comparison, use strcmp
instead
of strcmpi
.
Although strcmpi
shares a name
with a C function, it does not follow the C language convention of
returning 0
when the text inputs match.