read number from file name leaving special characters

2 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

KSSV
KSSV il 14 Mar 2018
Modificato: KSSV il 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 Commenti
Oindri
Oindri il 14 Mar 2018
Thanks. Anyways, I had to make some modifications.
KSSV
KSSV il 14 Mar 2018
fine..I hope your problem is solved....

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by