1. 程式人生 > >matlab的檔名字提取,及刪除字尾

matlab的檔名字提取,及刪除字尾

參考 http://blog.csdn.net/uncle_ll/article/details/65632505
http://yongliu2005.blog.163.com/blog/static/2180000642014128816372/

1、帶字尾

fileFolder = fullfile(matlabroot,'mathclass','raccoon');    % 遍歷資料夾下所有符合條件的檔案
dirOutput = dir(fullfile(fileFolder,'ra*.jpg'));   % 提取路徑  
fileNames = {dirOutput.name}';   % 獲得符合條件檔名


2、刪除字尾 在M檔案中載入了一個知道路徑而不知道名字的txt檔案,
load abc.txt
怎樣才能把abc這個名字(不要.txt字尾)提取出來賦給某個變數,請高手指教,謝謝! filename='abc.txt' filename =
abc.txt
>> new=filename(1:end-4)

new =
abc