Azzera filtri
Azzera filtri

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

4 visualizzazioni (ultimi 30 giorni)
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')

Risposta accettata

Askic V
Askic V il 2 Dic 2022
Modificato: Askic V il 2 Dic 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);

Più risposte (0)

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Tag

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by