CSVWriter:简单的c ++ csv writer类

时间:2024-05-29 17:24:31
【文件属性】:

文件名称:CSVWriter:简单的c ++ csv writer类

文件大小:4KB

文件格式:ZIP

更新时间:2024-05-29 17:24:31

C++

CSVWriter 简单的c ++ csv writer类。 如何使用 ? 只需c&p或将CSVWriter.h文件添加到您的项目中。 写一行 CSVWriter csv; csv << " this " << " is " << " a " << " row " ; cout << csv << endl; 输出: this;is;a;row 写多行 CSVWriter csv; csv.newRow() << " this " << " is " << " the " << " first " << " row " ; csv.newRow() << " this " << " is " << " the " << " second " << " row " ; cout << csv << endl; 输出: this;is;the;first;row this;is;t


【文件预览】:
CSVWriter-master
----.gitignore(273B)
----LICENSE(1KB)
----README.md(2KB)
----include()
--------CSVWriter.h(5KB)
----main.cpp(2KB)

网友评论