i := 123
s := string(i)
s is 'E', but what I want is "123"
Please tell me how can I get "123".
Use the strconv package's Itoa function.
For example:
package main
import (
"strconv"
"fmt"
)
func main() {
t := strconv.Itoa(123)
fmt.Println(t)
}