Go Package strconv: Difference between revisions
Jump to navigation
Jump to search
(→Atoi()) |
(→Atoi()) |
||
Line 11: | Line 11: | ||
====<tt>Atoi()</tt>==== | ====<tt>Atoi()</tt>==== | ||
{{External|https://pkg.go.dev/strconv#Atoi}} | {{External|https://pkg.go.dev/strconv#Atoi}} | ||
ASCII-to-int, converts a string representation of an integer to an <code>int</code> type. |
Revision as of 04:35, 22 August 2023
External
Internal
Overview
The strconv
package contains functions to convert strings to and from other data types.
Functions
Atoi()
ASCII-to-int, converts a string representation of an integer to an int
type.