Opposite command of strfind?

2 ビュー (過去 30 日間)
Ivan Mich
Ivan Mich 2023 年 2 月 7 日
編集済み: Jan 2023 年 2 月 7 日
I have a general question. Does it exist the opposite command of strfind ?
  2 件のコメント
Les Beckham
Les Beckham 2023 年 2 月 7 日
What would this "opposite" command do? Please give an example showing sample inputs and output. Or, at least give a more complete explanation in words.
Ivan Mich
Ivan Mich 2023 年 2 月 7 日
for example, strfind shows true result for words: "Milano" and "Milano".
I would like to have a command that could detect in an array the non same words...

サインインしてコメントする。

採用された回答

Jan
Jan 2023 年 2 月 7 日
編集済み: Jan 2023 年 2 月 7 日
No, strfind does not replie true for any inputs. It replies the indices of found matchs.
Maybe you mean:
a = "Milano";
b = "Milano";
~isequal(a, b)
~strcmp(a, b)
isempty(strfind(a, b))
a ~= b
~(a == b)
~contains(a, b) % or (b, a) ?

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by