Go对字符串格式化提供了良好的支持。下面我们看些常用的字符串格式化的例子。

运行结果

{1 2}
{x:1 y:2}
main.point{x:1, y:2}
main.point
true
123
1110
!
1c8
78.900000
1.234000e+08
1.234000E+08
"string"
"\"string\""
6865782074686973
0xc000092000
|    12|   345|
|  1.20|  3.45|
|1.20  |3.45  |
|   foo|     b|
|foo   |b     |
a string
an error

总结

以上所述是小编给大家介绍的Go 字符串格式化的实例代码详解,希望对大家有所帮助!

原文链接:https://studygolang.com/articles/26564