将16进制字符串值转换为 int 整型值
此例中用 "1de" 作为测试字符串,实现代码如下:
[cpp] view plaincopy
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <ctype.h>
- /*
- * 将字符转换为数值
- * */
- int c2i(char ch)
- {
- // 如果是数字,则用数字的ASCII码减去48, 如果ch = ‘2‘ ,则 ‘2‘ - 48 = 2
- if(isdigit(ch))
- return ch - 48;
- // 如果是字母,但不是A~F,a~f则返回
- if( ch < ‘A‘ || (ch > ‘F‘ && ch < ‘a‘) || ch > ‘z‘ )
- return -1;
- // 如果是大写字母,则用数字的ASCII码减去55, 如果ch = ‘A‘ ,则 ‘A‘ - 55 = 10
- // 如果是小写字母,则用数字的ASCII码减去87, 如果ch = ‘a‘ ,则 ‘a‘ - 87 = 10
- if(isalpha(ch))
- return isupper(ch) ? ch - 55 : ch - 87;
- return -1;
- }
- /*
- * 功能:将十六进制字符串转换为整型(int)数值
- * */
- int hex2dec(char *hex)
- {
- int len;
- int num = 0;
- int temp;
- int bits;
- int i;
- // 此例中 hex = "1de" 长度为3, hex是main函数传递的
- len = strlen(hex);
- for (i=0, temp=0; i<len; i++, temp=0)
- {
- // 第一次:i=0, *(hex + i) = *(hex + 0) = ‘1‘, 即temp = 1
- // 第二次:i=1, *(hex + i) = *(hex + 1) = ‘d‘, 即temp = 13
- // 第三次:i=2, *(hex + i) = *(hex + 2) = ‘d‘, 即temp = 14
- temp = c2i( *(hex + i) );
- // 总共3位,一个16进制位用 4 bit保存
- // 第一次:‘1‘为最高位,所以temp左移 (len - i -1) * 4 = 2 * 4 = 8 位
- // 第二次:‘d‘为次高位,所以temp左移 (len - i -1) * 4 = 1 * 4 = 4 位
- // 第三次:‘e‘为最低位,所以temp左移 (len - i -1) * 4 = 0 * 4 = 0 位
- bits = (len - i - 1) * 4;
- temp = temp << bits;
- // 此处也可以用 num += temp;进行累加
- num = num | temp;
- }
- // 返回结果
- return num;
- }
- int main(int argc, char *argv[])
- {
- char ch[10] = {0};
- strcpy(ch, "1de");
- printf("hex:%d\n", hex2dec(ch));
- return 0;
- }
本人在CentOS 6.5下测试
编译:gcc -Wall test.c -ohex
运行:./hex
输出:hex:478
时间: 2024-11-08 01:36:08