read number from file name leaving special characters

2 Ansichten (letzte 30 Tage)
Oindri
Oindri am 14 Mär. 2018
Kommentiert: KSSV am 14 Mär. 2018
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.

Akzeptierte Antwort

KSSV
KSSV am 14 Mär. 2018
Bearbeitet: KSSV am 14 Mär. 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 Kommentare
Oindri
Oindri am 14 Mär. 2018
Thanks. Anyways, I had to make some modifications.
KSSV
KSSV am 14 Mär. 2018
fine..I hope your problem is solved....

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by