필터 지우기
필터 지우기

Read a txt file at a certain position

조회 수: 2 (최근 30일)
Ahmad Alsabbagh
Ahmad Alsabbagh 2016년 5월 3일
편집: Ahmad Alsabbagh 2016년 5월 4일
Dear All,
I am trying to write a code that will read a matrix at a certain position in a text file.
For example, the text file will contain the following
Mike Code
This code is helpful
The Values of k is
12
123
23.4
1234
184.2
I want the code to read the values of k. Thus, I want the code to search for the line "The Values of k is" and start taking the numbers from the following lines. (I don't know the line number)
Thanks

채택된 답변

Walter Roberson
Walter Roberson 2016년 5월 4일
filecontent = fileread('YourFile.txt');
filecontent = regexprep(filecontent, '.*The Values of k is\s*','');
data = sscanf(filecontent, '%f');

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by