gpt4 book ai didi

c++ - 从文件中删除特定行

转载 作者:可可西里 更新时间:2023-11-01 18:29:24 25 4
gpt4 key购买 nike

这些是我的示例文件的内容:

abcdefg hijk lmnopqrstAB CSTAKLJSKDJD KSA 查找我 akjsdkjhwjkjhasfkajbsdh ADHKJAHSKDJH

我需要找到并删除文件中的“FIND ME”,以便输出如下所示:

abcdefg hijk lmnopqrstAB CSTAKLJSKDJD KSA akjsdkjhwjkjhasfkajbsdh ADHKJAHSKDJH

我试过下面的方法做getline,然后把除FIND ME以外的所有内容写入一个临时文件,然后重命名临时文件。

string deleteline;
string line;

ifstream fin;
fin.open("example.txt");
ofstream temp;
temp.open("temp.txt");
cout << "Which line do you want to remove? ";
cin >> deleteline;



while (getline(fin,line))
{
if (line != deleteline)
{
temp << line << endl;
}
}

temp.close();
fin.close();
remove("example.txt");
rename("temp.txt","example.txt");

但它不起作用。正如旁注:该文件没有换行符/换行符。所以文件内容全部写在1行。

编辑:

固定代码:

while (getline(fin,line))
{
line.replace(line.find(deleteline),deleteline.length(),"");
temp << line << endl;

}

这让我得到了预期的结果。谢谢大家的帮助!

最佳答案

如果有人喜欢,我已将 Venraey 的有用代码转换为函数:

#include <iostream>
#include <fstream>

void eraseFileLine(std::string path, std::string eraseLine) {
std::string line;
std::ifstream fin;

fin.open(path);
// contents of path must be copied to a temp file then
// renamed back to the path file
std::ofstream temp;
temp.open("temp.txt");

while (getline(fin, line)) {
// write all lines to temp other than the line marked for erasing
if (line != eraseLine)
temp << line << std::endl;
}

temp.close();
fin.close();

// required conversion for remove and rename functions
const char * p = path.c_str();
remove(p);
rename("temp.txt", p);
}

关于c++ - 从文件中删除特定行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26576714/

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