How can I add one character before each line of textfile?
조회 수: 8 (최근 30일)
이전 댓글 표시
How can I add one character before each line of textfile and output a new textfile with the changes made?
댓글 수: 0
답변 (1개)
Konstantinos Sofos
2015년 2월 26일
Hi Bob,
What about this:
fid1 = fopen('file1.txt');
fid2 = fopen('file2.txt','w');
tline = fgets(fid1);
Character2add = 'xx_'; % here put the character to be added
while ischar(tline)
disp(tline)
fprintf(fid2,'%s %s\n',Character2add,tline);
tline = fgets(fid1);
end
fclose(fid1);
fclose(fid2);
Regards
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Text Files에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!