print last three chars of filename

조회 수: 72 (최근 30일)
Gmc
Gmc 2015년 1월 26일
댓글: Gmc 2015년 1월 27일
Hello - I have a list of filenames which always end with the authors' initials preceding the extension (e.g., GM_video_9_HLL.TXT). I need to read in just the initials like this
output = dir('*.TXT');
for k = 1:numel(output)
initials = (output(k).name(19:21));
end
fid = fopen('fields_test1.txt','wt');
fprintf(fid,'OPEN\n');
fprintf(fid,'------------\n');
fprintf(fid,'Field(' , initials , ')\n');
fclose(fid);
The problem is the last three letters are not always at space 19:21 as in the example but they are always the last three letters before the extension in the filenames. Any help would be very much appreciated!
Thank you

채택된 답변

Steven
Steven 2015년 1월 26일
filename(end-3:end)

추가 답변 (1개)

Image Analyst
Image Analyst 2015년 1월 26일
initials = output(k).name(end-6:end-4);

카테고리

Help CenterFile Exchange에서 Large Files and Big Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by