Borrar filtros
Borrar filtros

Exporting Lines from One Text File to Another

2 visualizaciones (últimos 30 días)
jgillis16
jgillis16 el 27 de Oct. de 2015
Editada: Jan el 27 de Oct. de 2015
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.

Respuesta aceptada

Jan
Jan el 27 de Oct. de 2015
Editada: Jan el 27 de Oct. de 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);

Más respuestas (0)

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by