write csv function

This commit is contained in:
Adam D. Ruppe 2017-06-20 20:04:20 -04:00
parent abd79d2b74
commit efd7d05bd1
1 changed files with 22 additions and 0 deletions

22
csv.d
View File

@ -58,3 +58,25 @@ string[][] readCsv(string data) {
return records;
}
///
string toCsv(string[][] rows) {
string data;
foreach(ridx, row; rows) {
if(ridx) data ~= "\n";
foreach(idx, cell; row) {
if(idx) data ~= ",";
if(cell.indexOf(",") != -1 || cell.indexOf("\"") != -1 || cell.indexOf("\n") != -1) {
data ~= "\"";
data ~= cell.replace(`"`, `""`);
data ~= "\"";
} else {
data ~= cell;
}
}
}
return data;
}