From a txt file read the 4 line

2 views (last 30 days)
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 Comments
Touts Touts
Touts Touts on 30 Mar 2018
Please did you have any idea ?
Rik
Rik on 30 Mar 2018
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.

Sign in to comment.

Accepted Answer

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

More Answers (0)

Categories

Find more on Large Files and Big Data in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!