Effacer les filtres
Effacer les filtres

To remove part of the string while writing in a text file

4 vues (au cours des 30 derniers jours)
Vishwas
Vishwas le 2 Déc 2022
Commenté : Vishwas le 2 Déc 2022
Hi, I am using the following sample code to write the string in a text file, however apart from the string, I am getting additional "..." in my output file. Could you please advice me on how to get rid of the "..." ? The code is as follows:
formatSpec = '\t%d km/h, %g g\t%s';
A1 = 80;
A2 = 0.2;
A3 = 'Long_Pre_Event.res';
str = sprintf(formatSpec,A1,A2,A3);
writematrix(str,strrep(A3,'.res','.logVDT'),'FileType','text')

Réponse acceptée

Askic V
Askic V le 2 Déc 2022
Modifié(e) : Askic V le 2 Déc 2022
formatSpec = '\t%d km/h, %g g\t%s';
A1 = 80;
A2 = 0.2;
A3 = 'Long_Pre_Event.res';
fileID = fopen('exp.txt','w');
fprintf(fileID,formatSpec,A1,A2,A3);
fclose(fileID);

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Tags

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by