From a txt file read the 4 line

4 次查看(过去 30 天)
Sorry for this basic question, for a txt file i need to read only the 4 line, so i skip the 3 noes above
txt file
Position 1: Level 1
Position 2: Level 1
Position 1: Level 2
Position 2: Level 2
My script
fid = fopen('My.txt','r');
C = textscan(fid, '%s', 'HeaderLines', 3)
C{:}
fclose(fid);
I need to got only
Position 2: Level 2
  3 个评论
Touts Touts
Touts Touts 2018-3-30
Please did you have any idea ?
Rik
Rik 2018-3-30
No, because as far as I can tell, you have exactly the output you need. So if you want help, you need to explain what you get, and how that is different from what you want to have.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2018-3-30
fid = fopen('My.txt','r');
C = textscan(fid, '%s', 'HeaderLines', 3, 'WhiteSpace', '', 'Delimiter', '\n');
fclose(fid);
line4 = C{1}{1};

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Large Files and Big Data 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by