read number from file name leaving special characters

1 view (last 30 days)
data_3dsar_pass1_az001_HH.mat
This is the filename. I need to read in the serial number at the end of the string. I have 360 such files starting from 001 to 360. how do i do it.

Accepted Answer

KSSV
KSSV on 14 Mar 2018
Edited: KSSV on 14 Mar 2018
matfiles = dir('*.mat') ; % you are in the folder of mat files
N = length(matfiles) ; % total number of files
% loop for each file
for i = 1:N
thisfile = matfiles(i).name
% do what you want
end
  4 Comments
Oindri
Oindri on 14 Mar 2018
Thanks. Anyways, I had to make some modifications.

Sign in to comment.

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!