searching cell array of strings
4 views (last 30 days)
Show older comments
Is there a way to use the 'find' function or something like it to search a cell array of strings for a particular string and return it's location in the cell array?
0 Comments
Answers (2)
Fangjun Jiang
on 23 Aug 2011
Or maybe strfind(), regexp();
C = {'hello' 'yes' 'no' 'goodbye'};
S='ye';
Found=strfind(C,S);
Ind=~cellfun('isempty',Found);
C(Ind)
0 Comments
See Also
Categories
Find more on Characters and Strings in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!