필터 지우기
필터 지우기

The problem with "contains"

조회 수: 4 (최근 30일)
Saeid
Saeid 2024년 1월 5일
답변: Paul 2024년 1월 6일
I have an string array containing longer strings, let's say it is called LongStrings. Then I have an array of shorter strings, and I want to see if LongStrings contains and of the elements of the ShortStrings array. I can already do that by writing:
LongStrings={'Apples are red' 'Lemons are yellow' 'Cucmbers are green' 'Some numbers are odd' 'This house is big' 'Bananas are yellow too' 'Strawberries are red'}
LongStrings = 1×7 cell array
{'Apples are red'} {'Lemons are yellow'} {'Cucmbers are green'} {'Some numbers are odd'} {'This house is big'} {'Bananas are yellow …'} {'Strawberries are red'}
ShortStrings={'odd' 'red' 'big' 'yellow'}
ShortStrings = 1×4 cell array
{'odd'} {'red'} {'big'} {'yellow'}
LongStringIdx=find(contains(LongStrings,ShortStrings))'
LongStringIdx = 6×1
1 2 4 5 6 7
This already gives me the indices of elements of LongStrings that contain those in the ShortStrings, but I wonder how I can assign each value from the LongStringIdx to its analogue in the ShortStrings. In other woords, I would like to have an output like the one below, in which it not only tells me which element in LongStrings has any of the elements of ShortString, but which element of ShortStrings it is.
Idx=[1 2;2 4; 4 1; 5 3; 6 4; 7 2]
Idx = 6×2
1 2 2 4 4 1 5 3 6 4 7 2
  댓글 수: 1
Paul
Paul 2024년 1월 5일
What should the result be if an element of LongStrings contains two or more elements of ShortStrings?

댓글을 달려면 로그인하십시오.

채택된 답변

Paul
Paul 2024년 1월 6일
Might not be faster, but ....
LongStrings={'Apples are red' 'Lemons are yellow' 'Cucmbers are green' 'Some numbers are odd' 'This house is big' 'Bananas are yellow too' 'Strawberries are red'};
ShortStrings={'odd' 'red' 'big' 'yellow' 'Apples'};
[r,c] = find(cell2mat(cellfun (@(c) (contains(LongStrings(:),c)),ShortStrings,'Uni',false)));
sortrows([r,c])
ans = 7×2
1 2 1 5 2 4 4 1 5 3 6 4 7 2

추가 답변 (0개)

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by