Logo

Programming-Idioms

History of Idiom 55 > diff from v17 to v18

Edit summary for version 18 by :

Version 17

2015-09-04, 18:26:53

Version 18

2015-10-02, 13:58:00

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 "strconv"
Code
s := strconv.Itoa(i)
s10 := strconv.FormatInt(v, 10)
Comments bubble
When i has type int64.
Doc URL
https://golang.org/pkg/strconv/#FormatInt
Demo URL
http://play.golang.org/p/TE06SqU2Sc