Go[pkg] strconv本頁導覽[pkg] strconv將字串轉成其他型別 p, err := strconv.ParseFloat(price, 64) // 將字串轉成 float64if err != nil { fmt.Println("The price must be a number")} 將其他型別轉成字串 使用 strconv.Itoa 來轉型會比使用 fmt.Sprintf() 在效能上來得好(參考)。 i := 123t := strconv.Itoa(i)fmt.Println(t)