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) stringfloat64を文字列にフォーマットします。
strconv.FormatIntstrconv.FormatInt(i int64, base int) stringint64を指定した基数の文字列に変換します。
strconv.Quotestrconv.Quote(s string) stringGo構文でクォート処理された文字列を返します。
