Azzera filtri
Azzera filtri

how to extract file name

1 visualizzazione (ultimi 30 giorni)
yan abr
yan abr il 12 Dic 2017
Commentato: yan abr il 12 Dic 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.

Risposta accettata

per isakson
per isakson il 12 Dic 2017
Modificato: per isakson il 12 Dic 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 Commento
yan abr
yan abr il 12 Dic 2017
i need to continue with another process on this..but at this stage i got your answer. Thank you very much sir.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by