Can writetable delimit strings using single-quotes?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuesta aceptada
Chunru
el 26 de Abr. de 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 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!