我想知道如何通过搜索包含 foobar 的行然后只删除这些行来读取和编辑文本文件。如果有人可以将我指向正确的 fstream 功能,则不需要完整的程序。
问问题
279 次
2 回答
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;
}
于 2012-09-29T03:32:53.977 回答
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 的行保存到字符串中。读取整个文件后,将其关闭,然后以写入权限打开它并将字符串写入其中。这也将覆盖旧内容。
于 2012-09-29T03:30:57.610 回答