<C++>读写文本,要求删除txt文本中某一段内容(其他保留)
例如,1.txt文本内容为:abcdefghijklmnopqrstrvwxyz如何删除中间一行,即变为abcdefghijklxyz并保存到原1.txt文件中?要详细的...
例如,1.txt文本内容为:
abcdefghijkl
mnopqrstrvw
xyz
如何删除中间一行,即变为
abcdefghijkl
xyz
并保存到原1.txt文件中?
要详细的"完整代码",编译通过的才发~! 要是满意的答案我会加分~! 展开
abcdefghijkl
mnopqrstrvw
xyz
如何删除中间一行,即变为
abcdefghijkl
xyz
并保存到原1.txt文件中?
要详细的"完整代码",编译通过的才发~! 要是满意的答案我会加分~! 展开
1个回答
展开全部
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
void printFile(string strFileName);
void deleteByLineNo(string strFileName, int nLineToDel) ;
int main()
{
string strFileName = "1.txt";
int nLineToDel = 2;
cout<<"删除前的文本内容:"<<endl;
printFile(strFileName);
cout<<"--------------------------"<<endl;
cout<<"删除进行中..."<<endl;
deleteByLineNo(strFileName, nLineToDel);
cout<<"--------------------------"<<endl;
cout<<"删除后的文本内容:"<<endl;
printFile(strFileName);
return 0;
}
void deleteByLineNo(string strFileName, int nLineToDel)
{
ifstream fin(strFileName.c_str());
string allStr, strLine;
int nLineNo = 0;
while ( getline(fin, strLine, '\n') ) {
nLineNo++;
if (nLineNo == nLineToDel) { // 要删除第二行, 也可以换做对每一行内容的比较,匹配则删除
continue;
} else {
allStr += strLine + "\r\n";
}
}
fin.close();
ofstream fout(strFileName.c_str());
fout<<allStr;
fout.close();
cout<<allStr<<endl;
}
void printFile(string strFileName)
{
ifstream fin(strFileName.c_str());
string strLine;
while (getline(fin, strLine)) {
cout<<strLine<<endl;
}
fin.close();
}
#include <fstream>
#include <string>
using namespace std;
void printFile(string strFileName);
void deleteByLineNo(string strFileName, int nLineToDel) ;
int main()
{
string strFileName = "1.txt";
int nLineToDel = 2;
cout<<"删除前的文本内容:"<<endl;
printFile(strFileName);
cout<<"--------------------------"<<endl;
cout<<"删除进行中..."<<endl;
deleteByLineNo(strFileName, nLineToDel);
cout<<"--------------------------"<<endl;
cout<<"删除后的文本内容:"<<endl;
printFile(strFileName);
return 0;
}
void deleteByLineNo(string strFileName, int nLineToDel)
{
ifstream fin(strFileName.c_str());
string allStr, strLine;
int nLineNo = 0;
while ( getline(fin, strLine, '\n') ) {
nLineNo++;
if (nLineNo == nLineToDel) { // 要删除第二行, 也可以换做对每一行内容的比较,匹配则删除
continue;
} else {
allStr += strLine + "\r\n";
}
}
fin.close();
ofstream fout(strFileName.c_str());
fout<<allStr;
fout.close();
cout<<allStr<<endl;
}
void printFile(string strFileName)
{
ifstream fin(strFileName.c_str());
string strLine;
while (getline(fin, strLine)) {
cout<<strLine<<endl;
}
fin.close();
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询