如何将包含十六进制对的字符串转换为字节?
我有一个包含十六进制值的字符串。现在我需要包含十六进制的该字符串的内容作为字节变量。我应该如何在不更改十六进制值的情况下执行此操作?
I have a string containing a hexadecimal value. Now I need the content of this string containing the hexadecimal as a byte variable. How should I do this without changing the hexadecimal value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
迄今为止发布的选项的替代方案:
请注意,这将返回 0如果
text
为空;这可能是也可能不是您想要的结果。An alternative to the options posted so far:
Note that this will return 0 if
text
is null; that may or may not be the result you want.如果它只是字符串中的单个字节,您可以这样做:
If it is just a single byte in the string, you can do this:
我想这就是你要找的。如果没有,请发布更新,对您要查找的内容进行更明确的定义。
I think that's what you're looking for. If not, post an update with a more explicit definition of what you're looking for.