Properly escape " in strings when exporting CSV
This commit is contained in:
parent
b34c5f3c0f
commit
875f71d4ef
1 changed files with 3 additions and 2 deletions
|
@ -27,8 +27,9 @@ void CSVModelWriter::addColumn(const QString &title, int column, int role)
|
||||||
|
|
||||||
static void writeValue(QTextStream &f, const QString &value)
|
static void writeValue(QTextStream &f, const QString &value)
|
||||||
{
|
{
|
||||||
// TODO: quoting if " or \n in string
|
QString escaped = value;
|
||||||
f << "\"" << value << "\"";
|
escaped.replace('"', "\"\"");
|
||||||
|
f << "\"" << escaped << "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
static void writeSep(QTextStream &f)
|
static void writeSep(QTextStream &f)
|
||||||
|
|
Loading…
Reference in a new issue