C++读取然后编辑文本文件

C++ reading and then editing a text file

本文关键字:文本 文件 编辑 然后 读取 C++      更新时间:2023-10-16

我想知道如何通过搜索包含foobar的行然后仅擦除这些行来读取和编辑文本文件。 不需要完整的程序,如果有人可以指出我正确的 fstream 函数。

#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;
}

执行以下操作:

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 的行保存到字符串中。读取整个文件后,将其关闭,然后使用写入权限打开它并将字符串写入其中。这也将覆盖旧内容。