'hello'に一致するディレクトリ内のすべてのファイルを検索しようとしています。私は次のコードを持っています:
fileData = dir();
m_file_idx = 1;
fileNames = {fileData.name};
index = regexp(filenames,'\w*hello\w*','match') ;
inFiles = fileNames(~cellfun(@isempty,index));
元。ディレクトリにhelloという単語が含まれるファイルが3つある場合、inFilesは私を返します
inFiles =
[1x23 char] [1x26 char] [1x25 char]
代わりに、inFilesにファイルの名前を返してもらいたいのですが、ex thisishello.m、hiandhello.txtどうすれば簡単にこれを行うことができますか?