将二进制编码的十进制 (BCD) 解码为无符号整数
我的项目中使用的值是用4位二进制编码的十进制(BCD)表示的,它最初存储在字符缓冲区中(例如,由指针const unsigned char *
指向)。我想将输入的 BCD 字符流转换为整数。您能告诉我一种有效且快速的方法吗?
数据格式示例和预期结果:
BCD*2; 1001 0111 0110 0101=9765
"9" "7" "6" "5"
非常感谢!
The value used in my project is expressed with 4-bits binary coded decimals (BCD), which was originally stored in a character buffer (for example, pointed by a pointer const unsigned char *
). I want to convert the input BCD char stream to an integer. Would you please show me an efficient and fast way to do that?
Data format example and expected result:
BCD*2; 1001 0111 0110 0101=9765
"9" "7" "6" "5"
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里的
length
指定输入中的字节数,因此对于OP给出的示例,nybbles
将是{0x97, 0x65}
并且长度
将为2。length
here specifies the number of bytes in the input, so for the example given by the OP,nybbles
would be{0x97, 0x65}
andlength
would be 2.您可以像这样破译最右边的数字:
然后您可以将数字向右移动,以便下一个数字成为最右边的:
但这会给您提供错误顺序的数字(从右到左)。如果你知道有多少位数字,你当然可以直接提取正确的位。
使用例如
(bcdNumber >> (4 * digitalIndex)) & 0xf;
提取第digitIndex
:th 数字,其中数字 0 是最右边的。You can decipher the right-most digit like so:
then you can shift the number to the right, so that the next digit becomes the rightmost:
This will give you the digits in the wrong order though (right to left). If you know how many digits you have, you can of course extract the proper bits directly.
Use e.g.
(bcdNumber >> (4 * digitIndex)) & 0xf;
to extract thedigitIndex
:th digit, where digit 0 is the rightmost.