Info

This question is closed. Reopen it to edit or answer.

How to remove array items that include a certain substring?

1 view (last 30 days)
I have an array list of filenames that I want to process—let's say some of them start with the letter "a", some start with "b", and some start with "c'". I only want to filter out all of the array items that start with "a" and "b" so the array only includes the "c" filenames.
How could I do this?
%creating sample array
filetable = {'a1','a2','b1','b2','c1','c2'};

Answers (0)

Community Treasure Hunt

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

Start Hunting!