Is there a function that returns t/f when searching for a string case

1 view (last 30 days)
say I have the case of:
m={'abc';'efg';hij'}
is there a function that can search for the letter 'i' and return an array stating 1 or 0 for true or false if that letter exists in m?
so the answer that i would be looking for would return as:
ans=
0
0
1
I have an older version of Matlab, R2008a

Accepted Answer

Jan
Jan on 26 Mar 2015
found = ~cellfun('isempty', strfind(m, 'i'));
  1 Comment
Brian Morrison
Brian Morrison on 27 Mar 2015
simple and easy i like it. just had to write a quick if/else statement to switch the 1's and 0's

Sign in to comment.

More Answers (0)

Categories

Find more on Startup and Shutdown 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!