สอนเขียนภาษา Go (Golang) เพื่อแปลง String เป็น Float ด้วยคำสั่ง strconv.ParseFloat จาก package strconv สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง แปลง String เป็น Float ภาษา Go ด้วย ParseFloat
package main
import (
"fmt"
"strconv"
)
func main() {
s := "23"
f, _ := strconv.ParseFloat( s, 64 )
f = f + 10.36
fmt.Print( "f = ", f )
}
ผลลัพธ์
f = 33.36