8 个解决方案
#1
自己先顶下。。。
#2
1.
用strtol函数
2.
拆分字符,比如:
CString str="ab";
int a=atpi(str.GetAt(0))*16+atoi(stt.GetAt(1);
用strtol函数
2.
拆分字符,比如:
CString str="ab";
int a=atpi(str.GetAt(0))*16+atoi(stt.GetAt(1);
#3
如果是str=“0x12”这种格式,自己写函数算吧(str.GetAt(0)-"0")*16+str.GetAt(1)-"0"
#4
麻烦拆字符爽的详细点
#5
麻烦拆字符说的详细点
#6
CString st = "20";
int n = strtol(st,NULL,16);
int n = strtol(st,NULL,16);
#7
_tcstoul(str, NULL, 16)
#8
http://download.csdn.net/detail/allenemo/6487471
#1
自己先顶下。。。
#2
1.
用strtol函数
2.
拆分字符,比如:
CString str="ab";
int a=atpi(str.GetAt(0))*16+atoi(stt.GetAt(1);
用strtol函数
2.
拆分字符,比如:
CString str="ab";
int a=atpi(str.GetAt(0))*16+atoi(stt.GetAt(1);
#3
如果是str=“0x12”这种格式,自己写函数算吧(str.GetAt(0)-"0")*16+str.GetAt(1)-"0"
#4
麻烦拆字符爽的详细点
#5
麻烦拆字符说的详细点
#6
CString st = "20";
int n = strtol(st,NULL,16);
int n = strtol(st,NULL,16);
#7
_tcstoul(str, NULL, 16)
#8
http://download.csdn.net/detail/allenemo/6487471