Azzera filtri
Azzera filtri

Find text in a variable which contains texts and numbers

1 visualizzazione (ultimi 30 giorni)
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?

Risposta accettata

Image Analyst
Image Analyst il 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 Commenti
Walter Roberson
Walter Roberson il 27 Nov 2015
Kelly, does that mean that your problem is solved?

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by