我有以下代码片段:
const byte1 = 0x19;
const byte2 = 0x45;
msg := fmt.Sprintf("\\x%x\\x%x message", byte1, byte2)
log.Info("Learning go fmt", "msg", msg)
我明白了:
msg="\\x19\\x45 message"
为什么反斜杠重复?根据这个网站,\\在一个格式内应该 yield \。
临摹微笑
相关分类