Can writetable delimit strings using single-quotes?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am using writetable to export to CSV. All strings are delimited with double quotes. Is there any way to have strings delimited by single quotes? The help from "doc writetable" doesn't seem to provide a name-value pair to control this.
0 Kommentare
Akzeptierte Antwort
Chunru
am 26 Apr. 2022
You may not change the quote string with writetable directly.
However, you can add a single quote to your string before writing.
% create a small table
str = ["A", "B", "C D"]';
num = [1 2 3]';
t = table(str, num)
% No quotation marks
writetable(t, 'test.txt')
type test.txt
% double quotation marks
writetable(t, 'test1.txt', 'QuoteStrings', true)
type test1.txt
% single quotation marks
t.str = "'"+t.str+"'";
writetable(t, 'test2.txt')
type test2.txt
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!