Effacer les filtres
Effacer les filtres

how to extract file name

1 vue (au cours des 30 derniers jours)
yan abr
yan abr le 12 Déc 2017
Commenté : yan abr le 12 Déc 2017
Hi I am trying to extract a file name but i don´t want to extract it´s entire name.For example if i have 30 people with 3 different expressions each. I name them as 0101.txt...0103.txt,...,3001.txt...3003.txt. How could i extract only the first 2 digits that represent individual person? Thank you.

Réponse acceptée

per isakson
per isakson le 12 Déc 2017
Modifié(e) : per isakson le 12 Déc 2017
If I got you question right
cac = { '0101.txt', '0103.txt', '3001.txt', '3003.txt' };
out = regexp( cac, '^\d{2}', 'match' );
out{:}
outputs
ans =
'01'
ans =
'01'
ans =
'30'
ans =
'30'
  1 commentaire
yan abr
yan abr le 12 Déc 2017
i need to continue with another process on this..but at this stage i got your answer. Thank you very much sir.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur File Operations dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by