如何使用C ++代码在.CSV文件中写入表格数据?

时间:2019-10-10 03:12:13

标签: c++

我正在尝试以表格形式编写.csv文件。许多字符串变量(频率电压电流S11 S22 S21 S12)包含大数据。

enter image description here ...等等...

首先,通过将“,”替换为“ \ n”,将所有变量数据行转换为列,以垂直形式编写。 对于exp

enter image description here 转换成 enter image description here

string voltage , freq, curt;
freq= tmp.query("*FMA?\n");
voltage = tmp.query("*VOL?\n");
curt=   tmp.query("*CURR?\n");
replace(begin(freq), end(freq), ',', '\n');
replace(begin(voltage ), end(voltage), ',', '\n');
replace(begin(curt), end(curt), ',', '\n');
filewrite << freq<< voltage <<curt; 

enter image description here enter image description here

1 个答案:

答案 0 :(得分:0)

完成了。 用“,”分隔,并使用令牌以表格形式书写。

{{1}}

}