read number from file name leaving special characters

2 vues (au cours des 30 derniers jours)
Oindri
Oindri le 14 Mar 2018
Commenté : KSSV le 14 Mar 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.

Réponse acceptée

KSSV
KSSV le 14 Mar 2018
Modifié(e) : KSSV le 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 commentaires
Oindri
Oindri le 14 Mar 2018
Thanks. Anyways, I had to make some modifications.
KSSV
KSSV le 14 Mar 2018
fine..I hope your problem is solved....

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by