How to get row indices of names ends with specified common substring

Hi,
I have below cell array, and want to get row indices of names ends with "_A". I am working in Matlab2016a.
Names:
{'HATY_A';'VANU_BA';'IKLA_A';'PAIK_A';'HANYT_BH';'HAYIO_HNA';'HAKIO_A'}
desired_output:
rowIdx=
1
3
4
7
I use below code: pattern='_A'
rowIdx=endsWith(Names,pattern)
also tried
rowIdx=contains(Names,pattern)
but both doesn't work in 2016a. Kindly someone help how to get my desired output.

1 件のコメント

Stephen23
Stephen23 2018 年 9 月 3 日
編集済み: Stephen23 2018 年 9 月 3 日
For older versions:
>> Names = {'HATY_A';'VANU_BA';'IKLA_A';'PAIK_A';'HANYT_BH';'HAYIO_HNA';'HAKIO_A'};
>> find(~cellfun('isempty',regexp(Names,'_A$','once')))
ans =
1
3
4
7
Note that in many cases using logical indexing is more efficient than subscript indexing.

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

 採用された回答

Paolo
Paolo 2018 年 9 月 3 日
編集済み: Paolo 2018 年 9 月 3 日

1 投票

rowIdx=find(endsWith(names,pattern))
For previous versions:
rowIdx=find(cellfun(@(x) strcmp(x(end-1:end),'_A'),names))

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeSimultaneous and Synchronized Operations についてさらに検索

質問済み:

2018 年 9 月 3 日

編集済み:

2018 年 9 月 3 日

Community Treasure Hunt

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

Start Hunting!

Translated by