Borrar filtros
Borrar filtros

how to extract file name

1 visualización (últimos 30 días)
yan abr
yan abr el 12 de Dic. de 2017
Comentada: yan abr el 12 de Dic. de 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.

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre File Operations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by