How to Remove files that don't match string?

7 次查看(过去 30 天)
I have a list of filenames, and I am trying to remove any files that don't have the string 'Z1P', 'Z2P', or 'Z1G' in them.
The file names are stored in a cell array called Files.
Thanks for any help.

回答(2 个)

Guillaume
Guillaume 2017-5-10
The easiest, assuming R2016b or later, is to use contains:
filteredarray = yourcellarray(contains(yourcellarray, 'Z1P') & contains(yourcellarray, 'Z1P') & contains(yourcellarray, 'Z1G'))
  4 个评论
Ibro Tutic
Ibro Tutic 2017-5-10
Would it be possible to do this on a structure?
Guillaume
Guillaume 2017-5-10
If by structure you mean the structure returned by dir:
filteredstruct = dirstruct(~isempty(regexp({dirstruct.name}, 'Z1P|Z2P|Z1G', 'once')));

请先登录,再进行评论。


dpb
dpb 2017-5-10
编辑:dpb 2017-5-10
If anywhere in the filename, then
UnwantedStrings={'Z1P', 'Z2P', and 'Z1G'};
Files=Files(~ismember(upper(Files),'UnwantedStrings);
If it's an extension or needs must be in the filename and not extension, use fileparts first to separate pieces needed.
  3 个评论
Ibro Tutic
Ibro Tutic 2017-5-10
Not sure if you might have just miss-named that variable, but those are the strings that I want. i.e. if the file has Z1P, keep it or Z2P keep it, etc.
dpb
dpb 2017-5-10
Guillaume -- DOH! you're right. regexpi it is...
Ibro--oh, ok, it doesn't work anyway, but read it as to keep everything but. So, if it worked otherwise, lose the ~.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by