1) Convert int32 to string in Golang.
Nếu trong golang bạn không thể lấy int32 và cộng với 1 string.
Chúng ta phải convert int32 sang string.
https://stackoverflow.com/questions/39442167/convert-int32-to-string-in-golang
Đơn giản nhất là:
One line answer is fmt.Sprint(i)
.
2) Convert int to string
strconv.Itoa(<int value>)