用C++处理txt文件,要求把第一个和最后一个特定字符(比如等号)之间的内容输出并保存到另一个txt
比如,自己新建一个1.txt,内容自己随便打,然后读取并输出第一个和最后一个=之间的内容,并保存至2.txt,要求要能用vc++6.0编译运行通过。...
比如,自己新建一个1.txt,内容自己随便打,然后读取并输出第一个和最后一个=之间的内容,并保存至2.txt,要求要能用vc++ 6.0编译运行通过。
展开
展开全部
#include<iostream>
#include<string>
#include <fstream>
using namespace std;
int main()
{
const char lim = '}';
const char* file="1.txt";
const char* file2="2.txt";
ifstream fin(file);
ofstream fout(file2);
string str;
bool beg = false;
getline(fin,str,lim);//读到第一个特定字符位置
while(getline(fin,str,lim)){//继续读到下一个特定字符或者文件结束
if(fin.peek()==EOF) break;//超越文件末尾了,结束
if(beg){
cout << lim;//没有超越,把上一个的特定字符补上
fout << lim;
}
cout << str;//输出这一次读取到的
fout << str;
beg = true;
}
cout << endl;
fout << endl;
fin.close();
fout.close();
return 0;
}
#include<string>
#include <fstream>
using namespace std;
int main()
{
const char lim = '}';
const char* file="1.txt";
const char* file2="2.txt";
ifstream fin(file);
ofstream fout(file2);
string str;
bool beg = false;
getline(fin,str,lim);//读到第一个特定字符位置
while(getline(fin,str,lim)){//继续读到下一个特定字符或者文件结束
if(fin.peek()==EOF) break;//超越文件末尾了,结束
if(beg){
cout << lim;//没有超越,把上一个的特定字符补上
fout << lim;
}
cout << str;//输出这一次读取到的
fout << str;
beg = true;
}
cout << endl;
fout << endl;
fin.close();
fout.close();
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询