How to find two continuous words appear in the sentence
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Jothi
el 22 de Dic. de 2014
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.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 22 de Dic. de 2014
idx=find(~cellfun(@isempty,regexp(A,'is good','match')))
0 comentarios
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!