我是一名学生,这门c++课程对我来说真的很难。我学习了一个关于文件的主题,得到了一个有50行4列的文件。我试着用我的讲师笔记来显示这个文件。这就是我尝试的:
#include < iostream >
using namespace std;
int main() {
FILE* stream = fopen("student.csv", "r");
char line[1024];
while (fgets(line, 1024, stream))
{
printf(" %s ",line);
}
}
尽管我真的不明白,但我还是设法显示了文件事件。有人能向我解释一下字符行是干什么的吗?它代表50行吗?如果我想找到一列的最小值,我必须声明一个新的变量?
在C++中,通常使用std::string
读取文件并将其拆分为列。
对不起,我不能"降级";在C++中使用CCD_ 2数组。因此,我假设您使用std::ifstream
打开一个文件,并在循环中使用std::getline
逐行读取。然后你就有了std::string
中的每一行
然后:
将字符串拆分为多个部分是一项非常古老的任务。有许多可用的解决方案。所有这些都具有不同的特性。有些很难理解,有些很难开发,有些更复杂、更慢或更快、更灵活或不灵活。
替代
- 手工制作,许多变体,使用指针或迭代器,可能很难开发,而且容易出错
- 使用旧式
std::strtok
函数。也许不安全。也许不应该再使用了 std::getline
。最常用的实现。但实际上;误用";而且不那么灵活- 使用专门为此目的开发的专用现代功能,最灵活,很好地适应STL环境和算法环境。但速度较慢
请参阅一段代码中的4个示例。
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <regex>
#include <algorithm>
#include <iterator>
#include <cstring>
#include <forward_list>
#include <deque>
using Container = std::vector<std::string>;
std::regex delimiter{ "," };
int main() {
// Some function to print the contents of an STL container
auto print = [](const auto& container) -> void { std::copy(container.begin(), container.end(),
std::ostream_iterator<std::decay<decltype(*container.begin())>::type>(std::cout, " ")); std::cout << 'n'; };
// Example 1: Handcrafted -------------------------------------------------------------------------
{
// Our string that we want to split
std::string stringToSplit{ "aaa,bbb,ccc,ddd" };
Container c{};
// Search for comma, then take the part and add to the result
for (size_t i{ 0U }, startpos{ 0U }; i <= stringToSplit.size(); ++i) {
// So, if there is a comma or the end of the string
if ((stringToSplit[i] == ',') || (i == (stringToSplit.size()))) {
// Copy substring
c.push_back(stringToSplit.substr(startpos, i - startpos));
startpos = i + 1;
}
}
print(c);
}
// Example 2: Using very old strtok function ----------------------------------------------------------
{
// Our string that we want to split
std::string stringToSplit{ "aaa,bbb,ccc,ddd" };
Container c{};
// Split string into parts in a simple for loop
#pragma warning(suppress : 4996)
for (char* token = std::strtok(const_cast<char*>(stringToSplit.data()), ","); token != nullptr; token = std::strtok(nullptr, ",")) {
c.push_back(token);
}
print(c);
}
// Example 3: Very often used std::getline with additional istringstream ------------------------------------------------
{
// Our string that we want to split
std::string stringToSplit{ "aaa,bbb,ccc,ddd" };
Container c{};
// Put string in an std::istringstream
std::istringstream iss{ stringToSplit };
// Extract string parts in simple for loop
for (std::string part{}; std::getline(iss, part, ','); c.push_back(part))
;
print(c);
}
// Example 4: Most flexible iterator solution ------------------------------------------------
{
// Our string that we want to split
std::string stringToSplit{ "aaa,bbb,ccc,ddd" };
Container c(std::sregex_token_iterator(stringToSplit.begin(), stringToSplit.end(), delimiter, -1), {});
//
// Everything done already with range constructor. No additional code needed.
//
print(c);
// Works also with other containers in the same way
std::forward_list<std::string> c2(std::sregex_token_iterator(stringToSplit.begin(), stringToSplit.end(), delimiter, -1), {});
print(c2);
// And works with algorithms
std::deque<std::string> c3{};
std::copy(std::sregex_token_iterator(stringToSplit.begin(), stringToSplit.end(), delimiter, -1), {}, std::back_inserter(c3));
print(c3);
}
return 0;
}