stringgointegerconverters

How to convert an int value to string in Go?


i := 123
s := string(i) 

s is 'E', but what I want is "123"

Please tell me how can I get "123".


Solution

  • Use the strconv package's Itoa function.

    For example:

    package main
    
    import (
        "strconv"
        "fmt"
    )
    
    func main() {
        t := strconv.Itoa(123)
        fmt.Println(t)
    }