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中? 展开
 我来答
zuylin322
2013-05-15 · 超过13用户采纳过TA的回答
知道答主
回答量:64
采纳率:100%
帮助的人:28.5万
展开全部
可以这么做,字符串化成单个字符输出,然后再原有基础上减去‘0’即可!
缪立军
推荐于2018-05-09 · TA获得超过384个赞
知道小有建树答主
回答量:257
采纳率:100%
帮助的人:172万
展开全部
#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
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式