6 Star 23 Fork 32

王布衣/gotdx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
hex.go 502 Bytes
一键复制 编辑 原始数据 按行查看 历史
package util
import (
"encoding/hex"
"fmt"
"log"
"strings"
)
// HexString2Bytes 16进制字符串转bytes
func HexString2Bytes(hexStr string) []byte {
hexStr = strings.Replace(hexStr, " ", "", -1)
data, err := hex.DecodeString(hexStr)
if err != nil {
// handle error
log.Println(err.Error())
return nil
}
return data
}
// Bytes2HexString bytes转16进制字符串
func Bytes2HexString(b []byte) string {
// with "%x" format byte array into hex string
return fmt.Sprintf("% x", b)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/quant1x/gotdx.git
git@gitee.com:quant1x/gotdx.git
quant1x
gotdx
gotdx
v1.3.4

搜索帮助