フィルターのクリア

how to append three text files together in a new text file ?

4 ビュー (過去 30 日間)
karan goyal
karan goyal 2019 年 2 月 4 日
編集済み: KSSV 2019 年 2 月 4 日
i have just started with matlab and want to know how to read text files and append them together in a new file.

採用された回答

KSSV
KSSV 2019 年 2 月 4 日
編集済み: KSSV 2019 年 2 月 4 日
% REad file1
fid = fopen(file1,'rt') ; % edited as suggested by Stephen Cobeldick
S1 = textscan(fid,'%s','delimiter','\n') ;
S1 = S1{1} ;
fclose(fid) ;
% Read file2
fid = fopen(file2,'rt') ;
S2 = textscan(fid,'%s','delimiter','\n') ;
S2 = S2{1} ;
fclose(fid) ;
% Append both the files
S12 = [S1 ; S2] ;
% Write to file
fid = fopen('data.txt','wt') ;
fprintf(fid,'%s\n',S12{:});
fclose(fid);
  2 件のコメント
karan goyal
karan goyal 2019 年 2 月 4 日
thank you soo much .IT worked.
you are a saver.
Stephen23
Stephen23 2019 年 2 月 4 日
If you are going to use wt for writing then file then you will need to use rt to read the file, otherwise on Windows you will end up with extra carriage return characters.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeText Data Preparation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by