Effacer les filtres
Effacer les filtres

Locate entire word in cell given a specific pattern

2 vues (au cours des 30 derniers jours)
GEORGIOS BEKAS
GEORGIOS BEKAS le 22 Jan 2018
Commenté : Birdman le 22 Jan 2018
I am trying to locate an entire word in a cell, given a specific pattern.
I am giving the following example:
stringList = {'cell', 'bell', 'charm', 'eva'}
index = find(strcmp(strList, 'ell'))
The words 'bell' and 'cell' must be located.

Réponse acceptée

Birdman
Birdman le 22 Jan 2018
regexp(strjoin(stringList),'[ell]')
  2 commentaires
GEORGIOS BEKAS
GEORGIOS BEKAS le 22 Jan 2018
can you also explain that to me? :)
Birdman
Birdman le 22 Jan 2018
Yes sure:)
Firstly, strjoin command gathers the content of the cell array within a character array so that it becomes proper to apply some calculations on it. Then, regexp command takes the first argument as converted, second argument means that it will search the entire input whether there are characters containing ell expression or not.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by