Golang string interpolation
16 August 2024 (Updated 16 August 2024)
On this page
fmt.Sprintf()
fmt.Sprintf()
returns the formatted string which you can assign to a variable.
fmt.Printf()
fmt.Printf()
prints the formatted string directly to the standard output.
The specifiers for both are:
- %s – String
- %d – Decimal integer
- %f – Floating point number
- %t – Boolean
- %v – Default format for any value (a general-purpose placeholder)
- %T – Type of the value
- %x – Hexadecimal representation of an integer
- %p – Pointer address
Tagged:
Golang