vc读取txt中用逗号隔开的数据,并赋给变量
在c://1.txt中数据如下:11,22,33,44,55要求读取后分别赋给5个变量,CStringstr1;CStringstr2;CStringstr3;CStri...
在c://1.txt中数据如下:
11,22,33,44,55
要求读取后分别赋给5个变量,
CString str1;
CString str2;
CString str3;
CString str4;
CString str5;
这是我的其他程序中一段,不会编,
求详细代码,急用,能用的话加分,谢谢各位大大! 展开
11,22,33,44,55
要求读取后分别赋给5个变量,
CString str1;
CString str2;
CString str3;
CString str4;
CString str5;
这是我的其他程序中一段,不会编,
求详细代码,急用,能用的话加分,谢谢各位大大! 展开
2个回答
展开全部
#include<stdio.h>
#include<afx.h>
#include "iostream.h"
main()
{
int count=0;
FILE *pfile1;
pfile1=fopen("1.txt","rb");
CString str1;
CString str2;
CString str3;
CString str4;
CString str5;
CString ch;
while(ch!=EOF)
{
ch=fgetc(pfile1);
if (ch!=','&&count==0)
{
str1=str1+ch;
}
else if (ch!=','&&count==1)
{
str2=str2+ch;
}
else if (ch!=','&&count==2)
{
str3=str3+ch;
}
else if (ch!=','&&count==3)
{
str4=str4+ch;
}
else if (ch!=','&&count==4)
{
str5=str5+ch;
}
else
{
count++;
}
}
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str3<<endl;
cout<<str4<<endl;
cout<<str5<<endl;
}
完美运行
#include<afx.h>
#include "iostream.h"
main()
{
int count=0;
FILE *pfile1;
pfile1=fopen("1.txt","rb");
CString str1;
CString str2;
CString str3;
CString str4;
CString str5;
CString ch;
while(ch!=EOF)
{
ch=fgetc(pfile1);
if (ch!=','&&count==0)
{
str1=str1+ch;
}
else if (ch!=','&&count==1)
{
str2=str2+ch;
}
else if (ch!=','&&count==2)
{
str3=str3+ch;
}
else if (ch!=','&&count==3)
{
str4=str4+ch;
}
else if (ch!=','&&count==4)
{
str5=str5+ch;
}
else
{
count++;
}
}
cout<<str1<<endl;
cout<<str2<<endl;
cout<<str3<<endl;
cout<<str4<<endl;
cout<<str5<<endl;
}
完美运行
追问
大神谢谢你了,你的程序是对的,可是有3个问题好像和我用的vs2010这个软件不兼容,自己百度了一下午算是解决了,谢谢你了。
追答
不客气啊,不兼容是啥情况,能把错误跟我说说吗
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先一行行的读出来,然后根据逗号分割
更多追问追答
追问
你理解错了吧,就5个数据,把它们读取来赋给str1,str2,str3。。当然逗号不要
追答
这样不更简单那。。ReadString按行读出来,保存在一个str中。在进行分割 strtok 就可以了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询