Logo

Programming-Idioms

History of Idiom 55 > diff from v20 to v21

Edit summary for version 21 by :

Version 20

2015-10-02, 13:59:49

Version 21

2015-10-02, 14:01:13

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"
Imports
import "strconv"
Code
s := strconv.Itoa(i)
Code
s := strconv.Itoa(i)
Comments bubble
When i has type int.
Comments bubble
When i has type int.
Doc URL
https://golang.org/pkg/strconv/#Itoa
Origin
http://stackoverflow.com/a/10105983/871134
Origin
http://stackoverflow.com/a/10105983/871134
Demo URL
http://play.golang.org/p/An5ev_G8rS
Demo URL
http://play.golang.org/p/An5ev_G8rS