Borrar filtros
Borrar filtros

How do I filter text in a table?

5 visualizaciones (últimos 30 días)
Or Shem Tov
Or Shem Tov el 3 de Mzo. de 2020
Editada: dpb el 3 de Mzo. de 2020
Hi,
I have a table stored in a variable "L", in this table there is variable that is filled with text rows - ArticleTitle.
How can I filter the table by ArticleTitle so that it shows only articles that begin with "Analyst Ratings" AND contains PT in them?
Thank you for your help.

Respuestas (1)

dpb
dpb el 3 de Mzo. de 2020
Editada: dpb el 3 de Mzo. de 2020
Don't attach images; use text from command line instead, or attach a small set of the data itself.
As for the Q?
ix=startsWith(L.ArticleTitle,"Analyst Ratings") & contains(L.ArticleTitle,"PT");
L1=L(ix,:);

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by