如何用C++提取一个txt文件中的“[...]”中的字符串
如题。比如我有一个txt文件,里面的内容是:09/3014:40:50PB.1297TRACE:[国内生产总值]cl=2lm=0ct=0si=gitn=sohupn=0|...
如题。比如我有一个txt文件,里面的内容是:09/30 14:40:50 PB .1297 TRACE: [国内生产总值] cl=2 lm=0 ct=0 si=gi tn=sohu pn=0 | disp=21674 list=200(10) 7ms cache=1
09/30 14:40:50 PB .1308 TRACE: [超星图书浏览器] cl=2 lm=0 ct=0 si=gi tn=sohu pn=0 | disp=54 list=54(10) 145ms cache=0
09/30 14:40:50 PB .1294 TRACE: [mp3] cl=2 lm=0 ct=0 si=gi tn=sohu pn=0 | disp=96110 list=200(10) 7ms cache=1
我想提取出[ ]中的字符串,然后放到一个数组中。求大神出手! 展开
09/30 14:40:50 PB .1308 TRACE: [超星图书浏览器] cl=2 lm=0 ct=0 si=gi tn=sohu pn=0 | disp=54 list=54(10) 145ms cache=0
09/30 14:40:50 PB .1294 TRACE: [mp3] cl=2 lm=0 ct=0 si=gi tn=sohu pn=0 | disp=96110 list=200(10) 7ms cache=1
我想提取出[ ]中的字符串,然后放到一个数组中。求大神出手! 展开
2个回答
展开全部
#include<iostream>
#include<fstream>
using namespace std;
void main()
{
char str[1000],str1[1000];
int i=0,j=0,m=0;
ifstream in("my.txt");
if(!in)
{
cerr<<"cannot open my.txt!"<<endl;
exit(1);
}
while(!in.eof())//首先全部读入到str数组中
{
in>>str[i];
i++;
}
for(;j<1000;j++)//将[]之间的读入到str1中
{
if(str[j]=='[')
{
while(str[j+1]!=']')
{
str1[m]=str[j+1];
j++;
m++;
}
if(str[j+1]=']')
str1[m++]='\n';
}
}
str1[m]='\0';//给str1数组最后一位设置为'\0'
cout<<str1<<endl;
}
不是自己写的看起来估计会有点费力,设置断点跟踪看看就明白了的 ~ ~
#include<fstream>
using namespace std;
void main()
{
char str[1000],str1[1000];
int i=0,j=0,m=0;
ifstream in("my.txt");
if(!in)
{
cerr<<"cannot open my.txt!"<<endl;
exit(1);
}
while(!in.eof())//首先全部读入到str数组中
{
in>>str[i];
i++;
}
for(;j<1000;j++)//将[]之间的读入到str1中
{
if(str[j]=='[')
{
while(str[j+1]!=']')
{
str1[m]=str[j+1];
j++;
m++;
}
if(str[j+1]=']')
str1[m++]='\n';
}
}
str1[m]='\0';//给str1数组最后一位设置为'\0'
cout<<str1<<endl;
}
不是自己写的看起来估计会有点费力,设置断点跟踪看看就明白了的 ~ ~
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询