gpt4 book ai didi

go - 如何在 Go 中使用字符串类型获取字符串的十六进制值

转载 作者:数据小太阳 更新时间:2023-10-29 03:29:38 27 4
gpt4 key购买 nike

我有一个字符串,byteArray:

byteArray := []byte("Hello, 世界-123..")
fmt.Println(byteArray)

看起来像:

[72 101 108 108 111 44 32 228 184 150 231 149 140 45 49 50 51 46 46]

我需要将 byteArray[0] 作为字符串获取,例如 "72",但它们是字节类型。

我如何实现这一目标?

最佳答案

您可以使用 strconv.Itoa :

byteArray := []byte("Hello, 世界-123..")

for _, v := range byteArray {
s := strconv.Itoa(int(v))
fmt.Printf("%T, %v\n", s, s)
}

关于go - 如何在 Go 中使用字符串类型获取字符串的十六进制值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55823465/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com