From a txt file read the 4 line

4 visualizzazioni (ultimi 30 giorni)
Touts Touts
Touts Touts il 30 Mar 2018
Risposto: Walter Roberson il 30 Mar 2018
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 Commenti
Touts Touts
Touts Touts il 30 Mar 2018
Please did you have any idea ?
Rik
Rik il 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.

Accedi per commentare.

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Data Import and Export in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by