国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > C > 正文

將CString字符串輸入轉(zhuǎn)化成整數(shù)的實(shí)現(xiàn)方法

2020-01-26 14:25:32
字體:
供稿:網(wǎng)友

如下所示:

BOOL IsHexFormat(LPCTSTR pStr) {   if (pStr[0] == L'0' && ((pStr[1] == L'x') || (pStr[1] == L'X'))){     return TRUE;   }   return FALSE; }  BOOL IsInputValid(LPCTSTR pStr) {   int i;   BOOL res;   BOOL IsHex;   i = 0;   res = TRUE;   IsHex = IsHexFormat(pStr);   while (pStr[i] != L'/0'){     if (pStr[i] >= L'0' && pStr[i] <= L'9'){       i++;       continue;     }     else if (IsHex && (i == 1)){       i++;       continue;     }     else if (IsHex &&          ((pStr[i] >= L'a' && pStr[i] <= L'f') ||           (pStr[i] >= L'A' && pStr[i] <= L'F') )) {       i++;       continue;     }     else{       res = FALSE;       break;     }   }   return res; }  UINT32 CStrHex2Uint32(LPCTSTR pStr) {   int i = 0;   UINT32 res = 0;    while (pStr[i] != L'/0'){     if (pStr[i] >= L'0' && pStr[i] <= L'9'){       res = res * 16 + pStr[i] - L'0';     }     else if (pStr[i] >= L'a' && pStr[i] <= L'f'){       res = res * 16 + pStr[i] - L'a' + 10;     }     else if (pStr[i] >= L'A' && pStr[i] <= L'F'){       res = res * 16 + pStr[i] - L'A' + 10;     }     else{       break;     }     i++;   }   return res; } /* 將CString轉(zhuǎn)化成UINT32, 0x開頭的識別成十六進(jìn)制,其它為十進(jìn)制*/ BOOL CStr2Uint32(CString str, UINT32 *pData) {   LPCTSTR pStr;   pStr = (LPCTSTR)str;   if (!IsInputValid(pStr)){     *pData = 0;     return FALSE;   }   if (IsHexFormat(pStr)){     UINT32 Data;     pStr = &pStr[2];     *pData = CStrHex2Uint32(pStr);   }   else{     *pData = _wtoi((wchar_t *)pStr);   }   return TRUE; } 

以上就是小編為大家?guī)淼膶String字符串輸入轉(zhuǎn)化成整數(shù)的實(shí)現(xiàn)方法的全部內(nèi)容了,希望對大家有所幫助,多多支持武林網(wǎng)~

發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表

圖片精選

主站蜘蛛池模板: 景东| 得荣县| 浏阳市| 余江县| 怀来县| 常熟市| 崇义县| 科技| 阜城县| 惠东县| 梅州市| 普安县| 定州市| 施秉县| 禹州市| 平昌县| 新宁县| 卢湾区| 南宁市| 邯郸市| 高邮市| 佛教| 永康市| 蒙自县| 浏阳市| 抚松县| 肃南| 贵德县| 龙江县| 樟树市| 普陀区| 镇沅| 兰溪市| 年辖:市辖区| 英山县| 龙海市| 青田县| 曲松县| 伊春市| 洪洞县| 上林县|