CString字符串中数字的提取。
给出下列CString类型的字符串“192.168.1.1”,怎么提取其中的数字19216811并将其存到int类型的a,b,c,d中?...
给出下列CString类型的字符串“192.168.1.1”,怎么提取其中的数字192 168 1 1并将其存到int类型的a,b,c,d中?
展开
2个回答
展开全部
#include "stdio.h"
#include "afx.h"
void main()
{
CString str = "192.168.1.1";
int a,b,c,d;
int pos;
pos = str.Find('.');
CString temp;
temp = str.Left(pos);
a = atoi(temp);
str = str.Right(str.GetLength()-pos-1);
pos = str.Find('.');
temp = str.Left(pos);
b = atoi(temp);
str = str.Right(str.GetLength()-pos-1);
pos = str.Find('.');
temp = str.Left(pos);
c = atoi(temp);
str = str.Right(str.GetLength()-pos-1);
d = atoi(str);
printf("a=%d\nb=%d\nc=%d\nd=%d\n",a,b,c,d);
}
vc控制台下还需要进行如下设置才能用MFC中的CString
工程中设置:工程项目属性-> 常规-> MFC的使用-> 在静态库中使用DLL
#include "afx.h"
void main()
{
CString str = "192.168.1.1";
int a,b,c,d;
int pos;
pos = str.Find('.');
CString temp;
temp = str.Left(pos);
a = atoi(temp);
str = str.Right(str.GetLength()-pos-1);
pos = str.Find('.');
temp = str.Left(pos);
b = atoi(temp);
str = str.Right(str.GetLength()-pos-1);
pos = str.Find('.');
temp = str.Left(pos);
c = atoi(temp);
str = str.Right(str.GetLength()-pos-1);
d = atoi(str);
printf("a=%d\nb=%d\nc=%d\nd=%d\n",a,b,c,d);
}
vc控制台下还需要进行如下设置才能用MFC中的CString
工程中设置:工程项目属性-> 常规-> MFC的使用-> 在静态库中使用DLL
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询