Effacer les filtres
Effacer les filtres

Find text in a variable which contains texts and numbers

1 vue (au cours des 30 derniers jours)
Kelly Kyriakou
Kelly Kyriakou le 26 Nov 2015
Commenté : Kelly Kyriakou le 20 Sep 2016
I read a csv file and store the data in a variable with the readtable command. This variable contains both text and numbers. How I could find the row of specific text?

Réponse acceptée

Image Analyst
Image Analyst le 26 Nov 2015
You could use ismember on the column of text, something like
loc = ismember(yourTable(:, 3), 'sometext');
if your text is in column 3. It will return the row the search text is in.
  11 commentaires
Walter Roberson
Walter Roberson le 27 Nov 2015
Kelly, does that mean that your problem is solved?
Kelly Kyriakou
Kelly Kyriakou le 20 Sep 2016
yes!

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by