reading text files based on specific sub-string values.

조회 수: 1 (최근 30일)
Ioannis Matthaiou
Ioannis Matthaiou 2021년 7월 14일
댓글: dpb 2021년 7월 14일
Hello,
I have several text files with the following format: "mmAAnn.txt". I read all the file names in Matlab without a problem. Now, I want to read each text file separately based on the value of "nn" within that filename's string. For instance, I want to decide to read and write in a variable only those filenames with nn=03. How do I do that?
Thank you,
Yiannis

채택된 답변

dpb
dpb 2021년 7월 14일
nWant=3;
wildCardName=sprintf('*%02d*.txt',nWant);
d=dir(wildCardName);
Unfortunately, the MATLAB implementation of dir() only recognizes the asterisk as the wildcard symbol; if need more finesse than it either use regular expressions over the collection of names returned with more general form as above or I often will use the OS more powerful facility instead.
  댓글 수: 3
Ioannis Matthaiou
Ioannis Matthaiou 2021년 7월 14일
just as a note: I also tried solving this using "extractBetween" and works great.
dpb
dpb 2021년 7월 14일
That also would work, yes...many ways to deal with the proverbial cat... :)

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by