フィルターのクリア

How to find the corresponding position in a string

2 ビュー (過去 30 日間)
peter huang
peter huang 2022 年 8 月 30 日
編集済み: Matt J 2022 年 8 月 30 日
How to find the corresponding string in a string set test_str = ['a';'b';'c'] test_str = 'a' 'b' 'c' How can i find out c and the output string is at position 3 of c

回答 (2 件)

Matt J
Matt J 2022 年 8 月 30 日
編集済み: Matt J 2022 年 8 月 30 日
test_str={'a','b','c'};
[exists,location]=ismember('c',test_str)
exists = logical
1
location = 3

Matt J
Matt J 2022 年 8 月 30 日
編集済み: Matt J 2022 年 8 月 30 日
test_str=['a','b','c']
test_str = 'abc'
location = strfind(test_str,'c')
location = 3

カテゴリ

Help Center および File ExchangeString Parsing についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by