Find text in a variable which contains texts and numbers

3 visualizaciones (últimos 30 días)
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?

Respuesta aceptada

Image Analyst
Image Analyst el 26 de Nov. de 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 comentarios
Walter Roberson
Walter Roberson el 27 de Nov. de 2015
Kelly, does that mean that your problem is solved?

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by