ROUTMIO_DEV

TOOLS

DDL GeneratorDDL → ERDDummy Data GeneratorRegex TesterJSON FormatterBase64 ConverterTimestamp ConverterCron BuilderMeeting Minutes

DATABASE

LANGUAGE

Go strconv

8 functions

strconv.Itoastrconv.Itoa(i int) string

Converts 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) string

Converts a float64 to a string.

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

Converts an int64 to a string in the given base.

strconv.Quotestrconv.Quote(s string) string

Returns a double-quoted Go string literal.

Terms of ServicePrivacy PolicyContactIcons by Flaticon