Golang : convert(cast) string to float value




To convert or cast a string to float value, just use the strconv.ParseFloat() function. Below is the code example to demonstrate how to convert string to float64 value.

 package main

 import (
 "fmt"
 "strconv"
 )

 func main() {
 var floatvalue float64

 floatvalue, _ = strconv.ParseFloat("123.456", 64)

 fmt.Println(floatvalue)
 }




By Adam Ng

IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.


Advertisement