Matching only parts of two cell arrays
Show older comments
A= {'36450A107';'36467A107';'38067A107'}
B={'36467A'};
How can I find that the 2nd cell in A matches the first 6 characters of B?
Accepted Answer
More Answers (2)
Andrei Bobrov
on 14 Jul 2013
find(~cellfun('isempty',regexp(A,B)));
Chandrasekhar
on 14 Jul 2013
for i = 1:length(A)
TF = findstr(char(B(1)),char(A(i)))
if(TF == 1)
disp(i)
end
end
1 Comment
joseph Frank
on 14 Jul 2013
Categories
Find more on Logical 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!