我想知道如何通过搜索包含foobar的行来读入和编辑文本文件,然后仅删除这些行。如果有人能指出我正确的fstream功能,那就不需要一个完整的程序。
答案 0 :(得分:5)
#include <iostream>
#include <algorithm>
#include <string>
class line {
std::string data;
public:
friend std::istream &operator>>(std::istream &is, line &l) {
std::getline(is, l.data);
return is;
}
operator std::string() const { return data; }
};
int main() {
std::remove_copy_if(std::istream_iterator<line>(std::cin),
std::istream_iterator<line>(),
std::ostream_iterator<std::string>(std::cout, "\n"),
[](std::string const &s) {
return s.find("foobar") != std::string::npos;
});
return 0;
}
答案 1 :(得分:1)
做这样的事情:
string sLine = "";
infile.open("temp.txt");
while (getline(infile, sLine))
{
if (strstr(sLine, "foobar") != NULL)
cout<<sLine;
else
//you don't want this line... it contains foobar
}
infile.close();
cout << "Read file completed!!" << endl;
这里我已经将输出打印到控制台,而不是回到文件,因为这应该指向正确的方向。
如果您需要提示如何将行打印到下面的文件:
将所有不包含foobar的行保存到字符串中。读完整个文件后,关闭它,然后用write权限打开它并将字符串写入它。这也将覆盖旧内容。