golang 【変換】文字列を数値に変換 Go言語 2022.01.09 2022.01.06 var intNum int var strNum string = "123" intNum, _ = strconv.Atoi(strNum) fmt.Printf("%d",intNum)