Extract part of a filename from a directory list

조회 수: 10 (최근 30일)
Tom Wright
Tom Wright 2012년 8월 14일
댓글: Sogand Karbalaieali 2017년 4월 12일
Hi, Can anyone please show me a 'nice' way to achieve what I what, preferably without looping.
I have a folder containing multiple files with similar format names 'XXX_YYY_010203.txt'. The numeric part is a timestamp, I would like to extract the timestamps into an array.
Currently my code looks like this:
filelist=dir(folder);
x=regexp({filelist(:).name},'_','split')
x=cellfun(@(x) regexp(x(3),'\.','split'),x)
x=cellfun(@(x) x(1),x)
Which works, but isn't exactly readable.

채택된 답변

Oleg Komarov
Oleg Komarov 2012년 8월 14일
I suppose that your filenames always have the date as ddmmyy and it's always at then end:
x = {'XXX_YYY_010203.txt'
'XXX_YYY_020203.txt'};
x = cellfun(@(in) in(end-9:end-4),x,'un',0)
  댓글 수: 2
Tom Wright
Tom Wright 2012년 8월 14일
Thanks
x = cellfun(@(in) in(end-9:end-4),{filelist(:).name},'un',0)
Sogand Karbalaieali
Sogand Karbalaieali 2017년 4월 12일
Thank you. Also, if all file names do not have the same patterns, those with different name pattern shall be excluded to avoid error in the code.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by