今天工作中遇到一个要不一个double型的字符串转换成一个纯字数字符串和一个标志这个数字字符串的小数点有几位的int类型
例如:“23.123”---》“23123” + 3 比较简单。就是把代码贴这里,以后用到了,可以直接拽来用
1 #include "stdafx.h" 2 3 #include <stdlib.h> 4 #include <iostream> 5 #include <string> 6 7 void getInfo(const char* pNum) 8 { 9 10 if (strlen(pNum) == 0 ) 11 { 12 return; 13 } 14 15 char num[100]={0}; 16 int index = 0; 17 int decemal = 0; 18 bool bIsDecemal = false; 19 20 //遍历字符串如果找到.的话不存储. 但是decimal开始计数 21 22 for(int i = 0; pNum[i] != '