covnvert a number in string to integer in golang code example
Example 1: golang convert string to int
Int, err := strconv.Atoi("12345")
Example 2: golang string to int
i, err := strconv.Atoi("-42")
s := strconv.Itoa(-42)
Int, err := strconv.Atoi("12345")
i, err := strconv.Atoi("-42")
s := strconv.Itoa(-42)