Read a txt file at a certain position

4 次查看(过去 30 天)
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