[Go] int64 型のデータを string 型に変換する

作成日: 2021年03月10日

strconv パッケージの FormatInt 関数を使うと、int64 型のデータを string 型に変換することができます。FormatInt 関数の第 2 引数に 10 を渡すことで、結果を 10 進数の表記で返すように指定しています。

package main

import (
    "fmt"
    "strconv"
)

func main() {
    var i int64 = 1
    str := strconv.FormatInt(i, 10)
    fmt.Println(str + " is string.")
}

実行結果は下記となります。

1 is string.
Go