필터 지우기
필터 지우기

replacing the content of a text file

조회 수: 3 (최근 30일)
H R
H R 2018년 8월 16일
답변: Image Analyst 2018년 8월 17일
Hi all. I have a text file "A.txt". I have a string S='Hello World'.
How to delete from line 10 to the end of file in "A.txt" and replace those deleted contents by string S, and save the new file to "B.txt"?
  댓글 수: 2
Paolo
Paolo 2018년 8월 16일
What's your OS? Can you show contents of "A.txt" ?
H R
H R 2018년 8월 16일
Windows 10. Please see the attached.

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
Image Analyst 2018년 8월 17일
Try this:
S='Hello World';
% Open the input file for reading.
fullInputFileName = 'A.txt';
inputFileID = fopen(fullInputFileName, 'rt');
% Open the input file for reading.
fullOuputFileName = 'B.txt';
outputFileID = fopen(fullOuputFileName, 'wt');
% Transfer the first 9 lines.
for k = 1 : 9
% Read the line.
textLine = fgetl(inputFileID);
fprintf('Transferring line #%d: "%s"\n', k, textLine);
% Write the line.
textLine = fprintf(outputFileID, '%s\n', textLine);
end
% Write S to B.txt
textLine = fprintf(outputFileID, '%s\n', S);
% All done reading all lines, so close the file.
fclose(inputFileID);
fclose(outputFileID);
fprintf('\n--------------------------------\nHere is B.txt:\n');
type(fullOuputFileName);

카테고리

Help CenterFile Exchange에서 Text Data Preparation에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by