Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以使用以下代码列出当前目录中的所有 .m 文件dir(fullfile('.', '*.m')):
dir(fullfile('.', '*.m'))
但是如何更改仅列出没有结尾 .m 的文件的正则表达式(也应包括没有“结尾”的文件)?
任何帮助将不胜感激!提前致谢!
怎么样
fls = dir( fullfile('.','*') ); sel = arrayfun( @(x) ~x.isdir && ~strcmp(x.name(end-1:end),'.m'), fls ); fls = fls(sel);