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