我不知道从这里去哪里。我知道有些事情需要去做ifstr.get(c)
。它复制了我在名为的文本文件中的确切单词,project.txt
但我只需要删除任何具有字符<
或>
?任何帮助都会很棒。谢谢:)
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main() {
string line;
char c;
ifstream ifstr("project.txt");
ofstream ofstr("past.txt");
if(ifstr.fail()){
cout<<"error!"<<endl;
} // if
ifstr.get(c);
while(!ifstr.eof()) {
cout<<c;
ifstr.get(c);
ofstr<<line<<endl;
} // while
cout<<endl<<"copy complete"<<endl;
ifstr.close();
ofstr.close();
system ("pause");
return 0;
} // main