How to find two continuous words appear in the sentence

조회 수: 1 (최근 30일)
Jothi
Jothi 2014년 12월 22일
편집: Stephen23 2014년 12월 22일
sir, Input cell arry
A= {' book is good','camera is working good', 'the picture quality is good'}
Query B={'is good'}
how to find index of the query string is appeared in the sentence.
my output is = 1,3
thanks.

채택된 답변

Stephen23
Stephen23 2014년 12월 22일
편집: Stephen23 2014년 12월 22일
Use strfind .
For example, like this:
find(~cellfun('isempty',strfind(A,'is good')))

추가 답변 (1개)

Azzi Abdelmalek
Azzi Abdelmalek 2014년 12월 22일
idx=find(~cellfun(@isempty,regexp(A,'is good','match')))

카테고리

Help CenterFile Exchange에서 Characters and Strings에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by