gpt4 book ai didi

c++ - 获取另一个文件中的数据条目数?

转载 作者:行者123 更新时间:2023-11-28 07:34:06 24 4
gpt4 key购买 nike

我想知道您是否可以轻松地获取另一个文件中的数据条目数并将该数字保存在原始文件中。需要一个程序来处理其他文件,无论其中有多少条目。希望这有意义。

最佳答案

你的问题措辞很糟糕,但我认为你正在寻找 getline .此函数可以根据换行符(默认行为)或根据用户提供的分隔符解析输入文件:

int entryCount = 0;
std::string currentLine;
std::ifstream inFile( "in.txt" );
std::ofstream outFile;
if (inFile) // short for inFile.good())
{
while (std::getline( inFile, currentLine))
{
++entryCount;
// Do your processing
}
inFile.close();
outFile.open( "out.txt" );
outFile << "End of file. " << entryCount << " entries read." << std::endl;
outFile.close();
}
else
std::cout << "oops... error opening inFile" << std::endl;

关于c++ - 获取另一个文件中的数据条目数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17069549/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com