C 有没有 char 转 16 进制的函数?
我有一个字符数组,其中包含文本文件中的数据,我需要将其转换为十六进制格式。 C语言有这样的函数吗?
先感谢您!
I have a char array with data from a text file and I need to convert it to hexadecimal format.
Is there such a function for C language.
Thank you in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果我正确理解这个问题(不能保证),您有一个表示十进制格式数字(“1234”)的文本字符串,并且您希望将其转换为十六进制格式的字符串(“4d2”)。
假设这是正确的,最好的选择是使用
sscanf()
或strtol()
将输入字符串转换为整数,然后使用sprintf()< /code> 与
%x
转换说明符将十六进制版本写入另一个字符串:If I understand the question correctly (no guarantees there), you have a text string representing a number in decimal format ("1234"), and you want to convert it to a string in hexadecimal format ("4d2").
Assuming that's correct, your best bet will be to convert the input string to an integer using either
sscanf()
orstrtol()
, then usesprintf()
with the%x
conversion specifier to write the hex version to another string:我假设您希望能够显示数组中各个字节的十六进制值,有点像转储命令的输出。这是一种显示该数组中一个字节的方法。
格式上需要前导零以保证输出宽度一致。
您可以大写或小写 X,以获得大写或小写表示。
我建议将它们视为无符号,这样就不会混淆符号位。
I am assuming that you want to be able to display the hex values of individual byes in your array, sort of like the output of a dump command. This is a method of displaying one byte from that array.
The leading zero on the format is needed to guarantee consistent width on output.
You can upper or lower case the X, to get upper or lower case representations.
I recommend treating them as unsigned, so there is no confusion about sign bits.
您可以使用
atoi
和sprintf
/snprintf
。这是一个简单的例子。You can use
atoi
andsprintf
/snprintf
. Here's a simple example.