国产探花免费观看_亚洲丰满少妇自慰呻吟_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ā)表

圖片精選

主站蜘蛛池模板: 新民市| 双流县| 杭锦旗| 自贡市| 鹤壁市| 石狮市| 上栗县| 汉阴县| 鄢陵县| 凤山县| 墨玉县| 清水县| 侯马市| 霸州市| 潞西市| 久治县| 永胜县| 张家川| 丰顺县| 平度市| 会宁县| 乾安县| 陇西县| 伊春市| 清新县| 尉犁县| 苍南县| 枝江市| 武宣县| 乳山市| 遂平县| 富顺县| 虎林市| 大宁县| 万州区| 思南县| 巍山| 杭州市| 岑溪市| 安西县| 永安市|