// Go言語 必読本 Essential Go // https://www.amazon.co.jp/dp/B0CF53VMYB // // Go言語: fmt.Sscanfで文字列からintに変換する package main import ( "fmt" "log" ) func main() { s := "348" var i int _, err := fmt.Sscanf(s, "%d", &i) if err != nil { log.Fatalf("fmt.Sscanf failed with '%s'\n", err) } fmt.Printf("i1: %d\n", i) } // Go言語 必読本 Essential Go // https://www.amazon.co.jp/dp/B0CF53VMYB // // Essential Go // https://www.programming-books.io/essential/go/ // By Krzysztof Kowalczyk // // Content is licensed under Creative Commons Attribution-ShareAlike 3.0