我想编写一个可以打开文件的程序,如果我找到“Hello World”,程序会自动将“Hello World”之前的文本复制到一个新文件中。
问题是,如何删除“缓冲区”中的文本“hello world”,例如:
buffer = new char [Size];
ifstream fstr;
fstr.open(path, ios::in);
fstr.read(buffer, (Size));
fstr.close();
//what should i write here about copying the rest of the text except
//Hello World?
ofstream outputFile(path2, ios::out);
outputFile << buffer;
outputFile.close();
谢谢你帮助我 :) 顺便说一句,我正在使用 Borland C++,我是一名学习者。