码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 实现string转BYTE

时间:2020-02-12 18:24:01      阅读:513      评论:0      收藏:0      [点我收藏+]

标签:sof   font   实现   npos   col   code   else   ons   div   

用于将形如"0x1A"的string转成BYTE类型

代码如下, 有问题欢迎指出

 

 1 bool str2byte(const std::string &str, BYTE &bRet)
 2 {
 3   bRet = 0x00;       //结果
 4   size_t iPos = 1;   //
 5   size_t power = 1;  //幂次
 6 
 7   //没找的‘x‘返回
 8   if(std::string::npos == str.find("x"))
 9   {
10     return false;
11   }
12 
13   //从右往左依次取每个字符
14   while (str.find("x") != (str.length()-iPos))
15   {
16     char cVal = str[str.length()-iPos];
17     int iVal = int(cVal);
18 
19     //0~9
20     if ((iVal >= 48) && (iVal <= 57))
21     {
22       bRet += ((iVal-48) * power);
23     }
24     //A~F
25     else if ((iVal >= 65) && (iVal <= 70))
26     {
27       bRet += ((iVal-55) * power);
28     }
29     //a~f
30     else if ((iVal >= 97) && (iVal <= 102))
31     {
32       bRet += ((iVal-87) * power);
33     }
34 
35     ++iPos;
36     power *= 16;
37   }
38 
39   return true;
40 }

 

C++ 实现string转BYTE

标签:sof   font   实现   npos   col   code   else   ons   div   

原文地址:https://www.cnblogs.com/TssiNG-Z/p/12299944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!