필터 지우기
필터 지우기

Create string from list of names in file

조회 수: 3 (최근 30일)
Cg Gc
Cg Gc 2019년 1월 2일
편집: Cg Gc 2019년 1월 2일
I have an unusual problem. I am running a program that generates a list of file names (see example, CLUSLIST_5). In this file, there are several columns, of which only the first and the last are important to me. The first is a group number (1,2,3,4,5) and the last is a file name (tdump84...). The group numbers stay the same; there will always be 5 groups. The number within each group and the names of the files will vary. I would like to create a string of the filenames for each group. The group number is not needed as part of the string, but can be part of the string name. I have several hundred of the lists of file names, so I will need something that can be repeatable.
I can generate a string of file names, but I am struggling with the varying number within each group part. How should I begin to account for the varying number within each group?
The file isn't actually a text file. It is a text file for uploading purposes here.
Thank you much.

채택된 답변

KSSV
KSSV 2019년 1월 2일
file = 'CLUSLIST_5.txt' ;
fid = fopen(file,'r') ;
S = textscan(fid,'%f %f %f %f %f %f %f %s') ;
fclose(fid) ;
str = S{8} ;
  댓글 수: 1
Cg Gc
Cg Gc 2019년 1월 2일
편집: Cg Gc 2019년 1월 2일
This worked a treat. Thank you much!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Export에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by