Azzera filtri
Azzera filtri

Exporting Lines from One Text File to Another

2 visualizzazioni (ultimi 30 giorni)
I have the following code written to copy certain lines from one text file:
contents = fileread('observedsn.txt');
[starts, stops] = regexp(contents, ...
'^([^|]*\|){24}(Ib|Ib/c|Ic|II|IIP|IIn|IIPec)\|.*$', ...
'start', 'end', 'lineanchors', 'dotexceptnewline');
How would I proceed to export these text lines to a new text file?
I have attached my text file.

Risposta accettata

Jan
Jan il 27 Ott 2015
Modificato: Jan il 27 Ott 2015
NL = char(10);
fid = fopen('Output.txt', 'W'); % Uppercase 'W' for buffering!
if fid == -1, error('Cannot open file for writing.'); end
for k = 1:length(starts)
fwrite(fid, contents(starts(k):stops(k)), 'uchar');
fwrite(fid, NL, 'uchar');
end
fclose(fid);

Più risposte (0)

Categorie

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

Community Treasure Hunt

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

Start Hunting!

Translated by