读取CSV文件存入map中(C++)
程序员文章站
2022-06-28 20:40:24
自己平时操作文件用的不多,今天小伙伴让帮忙写一下这个,顺便记一下。实现功能:从"翻译.csv"文件中读取出字符串,以","作为分隔符,将每一行对应存入map中。 代码: 运行结果: ......
自己平时操作文件用的不多,今天小伙伴让帮忙写一下这个,顺便记一下。实现功能:从"翻译.csv"文件中读取出字符串,以","作为分隔符,将每一行对应存入map中。
代码:
#include <iostream> #include <fstream> #include <string> #include <vector> #include <map> using namespace std; int main() { ifstream infile("翻译.csv", ios::in); if (!infile.is_open()) { cerr << "can't open the file" << endl; } string linestr; map<string, string> translation; while (getline(infile,linestr)) { // 分割字符串 int index = linestr.find(","); string english = linestr.substr(0, index); string chinese = linestr.substr(index+1, linestr.size()-1); // 存入map translation[english] = chinese; } //输出 for (map<string, string>::iterator iter = translation.begin(); iter!=translation.end();iter++) { cout << iter->first << iter->second << endl; } system("pause"); return 0; }
运行结果:
上一篇: PHP安全编程之加密功能
下一篇: 如何使用动态共享对象的模式来安装PHP
推荐阅读
-
C/C++程序从文本文件中读取(保存)数据
-
python读取csv文件并把文件放入一个list中的实例讲解
-
C++中利用opencv读取文件夹下的所有图片并重命名
-
C++中读取控制台输出,并将文件指针FILE*转换为istream
-
C++中读取控制台输出,并将文件指针FILE*转换为istream
-
读取CSV文件存入map中(C++)
-
Python从csv文件中读取数据及提取数据的方法
-
C++读取txt文件,并将每一行的信息存入结构体数组中
-
解决pandas中读取中文名称的csv文件报错的问题
-
本来规整的csv数据通过pandas读取后变得不规整的原因以及如何解决(CSV文件中读取时数据分割问题)