textscan 4th row into one string

1 Ansicht (letzte 30 Tage)
Terek Li
Terek Li am 16 Feb. 2017
Bearbeitet: per isakson am 11 Nov. 2017
Hi,
I have a huge file that I want to read only the 4th row with delimiter ';'. I want to read everything in this row into one single string so that I can count the number of ';' and determine how many columns there are. What is the code to do this?
I have tried
result = textread('U:\EMC\SMI8A_75_FA.csv', '%s', 1, 'headerlines', 3);
but the results are off.
Thanks!

Akzeptierte Antwort

per isakson
per isakson am 11 Nov. 2017
Bearbeitet: per isakson am 11 Nov. 2017
One way using textscan
fid = fopen( 'U:\EMC\SMI8A_75_FA.csv', 'r' );
result = textscan( fid, '%s', 1, 'headerlines',3, 'Delimiter','\n');
fclose( fid );

Weitere Antworten (0)

Kategorien

Mehr zu Data Import and Export finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by