Convert string to txt
41 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Ameer Hamza
le 2 Avr 2020
Modifié(e) : Ameer Hamza
le 5 Avr 2020
You should not run save('A.txt'). It is useless for your problem.
Réponses (1)
Maadhav Akula
le 5 Avr 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!
0 commentaires
Voir également
Catégories
En savoir plus sur Data Type Conversion dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!