Can writetable delimit strings using single-quotes?
조회 수: 2 (최근 30일)
이전 댓글 표시
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
채택된 답변
Chunru
2022년 4월 26일
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!