Go strconv
8 functions
strconv.Itoastrconv.Itoa(i int) stringConverts an integer to its decimal string representation.
strconv.Atoistrconv.Atoi(s string) (int, error)Converts a decimal string to an integer.
strconv.ParseFloatstrconv.ParseFloat(s string, bitSize int) (float64, error)Converts a string to a float64.
strconv.ParseBoolstrconv.ParseBool(str string) (bool, error)Converts a string to a bool.
strconv.ParseIntstrconv.ParseInt(s string, base, bitSize int) (int64, error)Converts a string in the given base to an int64.
strconv.FormatFloatstrconv.FormatFloat(f float64, fmt byte, prec, bitSize int) stringConverts a float64 to a string.
strconv.FormatIntstrconv.FormatInt(i int64, base int) stringConverts an int64 to a string in the given base.
strconv.Quotestrconv.Quote(s string) stringReturns a double-quoted Go string literal.
