Golang : Convert(cast) int64 to string
Problem :
You want to convert(cast) a big integer value to string for display.
Solution :
Use strconv.FormatInt() function to convert the int64 value to string. For example :
package main
import (
"fmt"
"strconv"
)
func main() {
var val int64 = 123456789
str := strconv.FormatInt(val, 10) // use base 10 for sanity purpose
fmt.Println(str) // int64 converted to string!
fmt.Printf("After conversion : %v \n", val) // alternate method works too!
}
Output :
123456789
After conversion : 123456789
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+6.3k Unix/Linux : How to get own IP address ?
+11.6k Golang : Convert(cast) bigint to string
+47.7k Golang : How to convert JSON string to map and slice
+9.4k Golang : Populate slice with sequential integers example
+7.2k Golang : Word limiter example
+10.7k Nginx : TLS 1.2 support
+7.5k Golang : Test if an input is an Armstrong number example
+8.8k Golang : How to use Gorilla webtoolkit context package properly
+7k Ubuntu : connect() to unix:/var/run/php5-fpm.sock failed (13: Permission denied) while connecting to upstream
+37.1k Upload multiple files with Go
+11.7k Golang : Convert a rune to unicode style string \u
+10.6k Golang : Command line file upload program to server example