Question about searching a number in file suffix
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a question about a command I would like to use. I have several files with multiple suffixes, for example file_1.txt, file_2.txt, file_3.txt etc.
I would like to read a specific file depending on a value of a variable. For example if my value is equal to 4 I would like to read file file_4.txt. if my value is equal to 5 I would like to read file file_5.txt.
Which command should I use in order to make it?
Coule you please help me?
댓글 수: 0
채택된 답변
Dyuman Joshi
2022년 12월 5일
d=5;
s=sprintf('file_%d.txt',d)
%command for reading the file
fileread(s)
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Search Path에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!