Remove cell that contains strings of another cell array

조회 수: 34 (최근 30일)
chlor thanks
chlor thanks 2016년 8월 8일
답변: Sean Mahnken 2019년 3월 28일
Input:
a={'Time12:30','Time12:40','Time1:40', 'Time2:40'};
b={'12:', '1:'};
Wanted Output: (delete from "a" all cells containing string listed in "b")
a={'Time2:40'}
I have tried:
for k = 1 : length(a)
for kk = 1 : length(b)
if any(~ismember(b{kk}, a{k}))
a(k) = [];
break;
end
end
end
However this gives me error of such:
Index exceeds matrix dimensions.
I am confused by the error and any guidance is appreciated! Thank you for reading my post.

채택된 답변

James Tursa
James Tursa 2016년 8월 8일
편집: James Tursa 2016년 8월 8일
You are changing the size of a in the loop with this line:
a(k) = [];
So subsequent iteration indexes that depend on the length of a will fail. Maybe save the indexes to delete in the loop, and then delete them all at once at the end. E.g., something like this:
a={'Time12:30','Time12:40','Time1:40', 'Time2:40'};
b={'12:', '1:'};
x = false(size(a)); % <-- Indexes to delete, start out nobody deleted
for k=1:numel(b)
x = x | ~cellfun(@isempty,strfind(a,b{k})); % <-- Flag the ones that b{k} matches
end
a(x) = []; % <-- Delete all the flagged lines at once

추가 답변 (2개)

Stalin Samuel
Stalin Samuel 2016년 8월 8일
strfind(a, b(kk))%find a string from string array

Sean Mahnken
Sean Mahnken 2019년 3월 28일
You should be able to just do the k loop backwards:
for k = length(a):-1:1
for kk = 1 : length(b)
if any(~ismember(b{kk}, a{k}))
a(k) = [];
break;
end
end
end

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by