parsing integers from directory list
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
mousomer Moussaffi
el 28 de Oct. de 2013
Respondida: Simon
el 28 de Oct. de 2013
I have a directory with files names:
1_d
3_kk
56_rr
I need to parse the list numbers from the file names. I need to output a numerical array
[1 3 56]
is there a simple way to do it?
0 comentarios
Respuesta aceptada
Simon
el 28 de Oct. de 2013
Hi!
What du you have? An array of strings or a cell array? Are the numbers always in front of the file name?
Suppose you have a cell array C, try using regexp:
C2 = regexp(C, '(\d*)', 'tokens');
C2 = cellfun(@(x) x{1}, C2);
numbers = cellfun(@(x) str2double(x), C2);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Search Path en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!