ROUTMIO_DEV

TOOLS

DDLジェネレーターDDL → ERD 変換ダミーデータジェネレーター正規表現テスターJSON フォーマッターBase64 変換タイムスタンプ変換Cron ビルダー議事録 / 報告書ドラフト

DATABASE

LANGUAGE

Go strconv

8個の関数

strconv.Itoastrconv.Itoa(i int) string

整数を10進数の文字列に変換します。

strconv.Atoistrconv.Atoi(s string) (int, error)

10進数の文字列を整数に変換します。

strconv.ParseFloatstrconv.ParseFloat(s string, bitSize int) (float64, error)

文字列をfloat64にパースします。

strconv.ParseBoolstrconv.ParseBool(str string) (bool, error)

文字列をboolにパースします。

strconv.ParseIntstrconv.ParseInt(s string, base, bitSize int) (int64, error)

指定した基数の文字列をint64にパースします。

strconv.FormatFloatstrconv.FormatFloat(f float64, fmt byte, prec, bitSize int) string

float64を文字列にフォーマットします。

strconv.FormatIntstrconv.FormatInt(i int64, base int) string

int64を指定した基数の文字列に変換します。

strconv.Quotestrconv.Quote(s string) string

Go構文でクォート処理された文字列を返します。

利用規約プライバシーポリシーお問い合わせIcons by Flaticon