Logo

Programming-Idioms

History of Idiom 55 > diff from v24 to v25

Edit summary for version 25 by :

Version 24

2015-10-22, 00:42:18

Version 25

2015-10-22, 08:48:30

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Imports
import "fmt"
Code
s := fmt.Sprintf("%d", i)
Comments bubble
This works with all types of integers.
Doc URL
https://golang.org/pkg/fmt/#Sprintf
Demo URL
http://play.golang.org/p/al5frTGwyb