Delete lines n to m in many text files

1 view (last 30 days)
H R
H R on 11 Jul 2017
Edited: Jan on 11 Jul 2017
Hello there,
I have 500 text files with names R1.txt to R500.txt.
How can delete lines 5002 to 5012 from all the text files and save them in the same text files?
Many thanks.

Accepted Answer

Jan
Jan on 11 Jul 2017
Edited: Jan on 11 Jul 2017
folder = '???'
for iFile = 1:500
% Create file name:
File = fullfile(folder, sprintf('R%d.txt', iFile));
% Import file and modify the contents:
DataC = strsplit(fileread(File), '\n');
DataC(5002:5012) = [];
% Overwrite the file:
fid = fopen(File, 'w');
if fid == -1
error('Cannot open file for writing: %s', File);
end
fprintf(fid, '%s\n', DataC{:});
fclose(fid);
end

More Answers (1)

KSSV
KSSV on 11 Jul 2017

Categories

Find more on Migrate GUIDE Apps 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!