Filter löschen
Filter löschen

Convert string to txt

29 Ansichten (letzte 30 Tage)
Jose Grimaldo
Jose Grimaldo am 2 Apr. 2020
Bearbeitet: Ameer Hamza am 5 Apr. 2020
I have a 4x1 string array, how can i write it and save it as a txt file? Not sure if i did it correctly.
A=(4x1) string array
fid = fopen('A.txt','wt');
fprintf(fid, '%s\n',A);
fclose(fid);
  5 Kommentare
Jose Grimaldo
Jose Grimaldo am 2 Apr. 2020
nwm i figure it out. Once i fclose is it consider save as txt file or do i have to inset at the end after fclose save('A.txt') ?
Ameer Hamza
Ameer Hamza am 2 Apr. 2020
Bearbeitet: Ameer Hamza am 5 Apr. 2020
You should not run save('A.txt'). It is useless for your problem.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Maadhav Akula
Maadhav Akula am 5 Apr. 2020
Hi,
I think you are getting that extra line because of the '\n' escape character. You can try the following code :
fid = fopen('A.txt','w');
fprintf(fid, '%s\n',A(1:end-1));
fprintf(fid,'%s',A(end));
fclose(fid);
Hope this Helps!

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by