Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 348 Bytes

format-a-go-string-without-printing.md

File metadata and controls

12 lines (7 loc) · 348 Bytes

如何拼接格式化字符串

stackoverflow连接

使用fmt.Sprintf可以获取格式化字符串

str := fmt.Sprintf("foo: %s", bar)

在线例子可以看“A Tour of Go”的例子,连接