Hvordan: Lese en CSV-fil ved hjelp av C++ Standardbiblioteket: #include <fstream> #include <iostream> #include <sstream> #include <vector> int main() { std::ifstream file("data.csv"); std::string line; while (std::getline(file, line)) { std::stringstream lineStream(line); std::string cell; std::vector<std::string> parsedRow; while (std::getline(lineStream, cell, ',')) { parsedRow.push_back(cell); } // Behandle analyzedRow her for (const auto& val : parsedRow) { std::cout << val << "\t"; } std::cout << std::endl; } return 0; } Skrive til en CSV-fil: #include <fstream> #include <vector> int main() { std::ofstream file("output.
I C++ er det ingen innebygd støtte for JSON, men tredjepartsbiblioteker som nlohmann/json gjør det enkelt.
For å arbeide med TOML i C++, trenger du et bibliotek som toml++.
toml++
Her er en enkel måte å analysere XML på ved hjelp av TinyXML-2-biblioteket.
For å jobbe med YAML i C++, er et populært valg yaml-cpp-biblioteket.
yaml-cpp