2014-04-30 200 views
0

我有一個20 x 2的單元格。兩列都包含字符串。我想要做的是在列2中搜索一個字符串,並在列2中的值匹配我的搜索字符串以返回索引號。在單元格中搜索字符串並返回索引號

name   region   
ABC   USA 
ASD   EU 
PLKDD  EU 
ERT   EU 
LKK   ASIA 
MNN   USA 
WER   EU 

結果我想基於搜索字符串爲 「EU」 低於

result 
2 
3 
4 
7 
+0

可能重複的[搜索單元格的字符串和返回索引號](http://stackoverflow.com/questions/23392658/searching-cell-for-string-and-return-index-number) –

回答

4

只需使用strcmpfind

index = find(strcmp(value(:, 2), 'EU')) 
相關問題