gpt4 book ai didi

c++ - 如果条件 c++ 如何跳过下一行

转载 作者:行者123 更新时间:2023-11-30 05:10:39 25 4
gpt4 key购买 nike

我查看了其他示例,但我无法使这个有效。我有一个文件,在某些时候有奇怪的字符,例如:“Äèîpg”我不想保存这一行,因为看起来带有 getline 的循环将停在那里(它存储到有垃圾的行)。请问我该怎么做?我知道发生这种情况时:“key =0”,下一行将包含这些字符“Äèîpg”。

这是我的代码:

    file = "example.log";
ifstream f(file);
f.open(file);
if (f.good()){
while (getline(f, line)) {
lineNumber++;
if ((lineNumber>= line1 - 20) && (lineNumber<= line2)){
pos = line.find("key = 0");
if (pos != string::npos){
std::cout << "skip the line" << endl;

}
else{
Type v;
v.line= line;
v.index = lineNumber;
linesVector.push_back(v);
}
}
}
}
f.close();

然后我用我需要的信息创建一个剪切文件:

    ofstream myfile;    
string merge = file + "_Cut.log";
myfile.open(merge);
for (unsigned int i = 0; i < linesVector.size(); i++){
myfile << linesVector[i].line << "\n";
//std::cout << linesVector[i].line << endl;
}
myfile.close();

预先感谢您的帮助!

为了清楚我的文件是什么样子,这里是原始的“example.log”(我无法将其附加到某处)。

2017-08-03 09:38:46 Expeum im6
2017-08-03 09:38:46 nubla4
2017-08-03 09:38:46 blaze
2017-08-03 09:38:46 ue
2017-08-03 09:38:46 er
2017-08-03 09:38:46 key = 0
2017-08-03 09:38:46 Q2žl2pE&ö³„Ôï¬ÈL+g…^cÎ1áø/7E›¸¥ü‰úLÎ’Æ
2017-08-03 09:38:46 81B9CEandrew499OEE4MUI5Q0VhbmRyZXc0OTk=
2017-08-03 09:38:47 B9CEandrew499OEE4MUI5Q0VhbmRyZXc0OTk=
2017-08-03 09:38:48 bla
2017-08-03 09:38:49 OK
2017-08-03 09:50:12 key = 0
2017-08-03 09:50:12 E&ö³„Ôï¬ÈL+g…^cÎ1áø/7E›¸¥ü‰úLÎ’Æ

这是我在剪切文件中得到的:

2017-08-03 09:38:46 Expeum im6
2017-08-03 09:38:46 nubla4
2017-08-03 09:38:46 blaze
2017-08-03 09:38:46 ue
2017-08-03 09:38:46 er
2017-08-03 09:38:46 key = 0
2017-08-03 09:38:46 Q2žl2p

问题是卡在了最后的乱码中无法继续前进! 可能是缺少一些回车吗?我的想法用完了。

最佳答案

所以看起来您正试图丢弃“key = 0”行和下一行?

如果是这样,您可以使用 ignore 在嵌套 if -这样的陈述:f.ignore(numeric_limits<std::streamsize>::max(), '\n')

如果lineNumber应该考虑这一行,您还需要添加 ++lineNumber .

如果这可能是文件中的最后一行,您应该总共添加以下代码:

if(!f.ignore(numeric_limits<std::streamsize>::max(), '\n')) {
break;
}
++lineNumber;

Live Example

关于c++ - 如果条件 c++ 如何跳过下一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45576537/

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