How to convert string to float in Go

3 Answers

0 votes
package main

import (
	"fmt"
	"strconv"
)

func main() {
    s := "3.14159265359"
    f, _ := strconv.ParseFloat(s, 8) 

    fmt.Println(f) 
  
}




/*
run:

3.14159265359

*/

 



answered May 26, 2020 by avibootz
0 votes
package main

import (
	"fmt"
	"strconv"
)

func main() {
    s := "3.14159265359"
    f, _ := strconv.ParseFloat(s, 32) 

    fmt.Println(f) 
  
}




/*
run:

3.1415927410125732

*/

 



answered May 26, 2020 by avibootz
0 votes
package main

import (
	"fmt"
	"strconv"
	"reflect"
)

func main() {
	s := "3.14159265359"
	f, err := strconv.ParseFloat(s, 16)
	
	fmt.Println(f, err, reflect.TypeOf(f))
}





/*
run:
  
3.14159265359 <nil> float64
  
*/

 



answered Oct 19, 2021 by avibootz

Related questions

2 answers 104 views
104 views asked Oct 30, 2024 by avibootz
1 answer 195 views
1 answer 113 views
1 answer 158 views
158 views asked May 26, 2020 by avibootz
1 answer 96 views
...