how to convert float to string in golang?

Hi Friends 👋,

Welcome To aGuideHub! ❤️

To convert float to string in golang, use the Sprintf() method it will return float as a string. You have to just call it like fmt.Sprintf("%v", b).


Follow the below tutorial if you are struggling with installing GO in windows.

https://aguidehub.com/blog/how-to-install-golang-in-windows/


Today, I will show you how do I convert float to string in golang, as mentioned above I’m going to use the Sprintf() method which is provided by the fmt package.

Let’s start our Golang convert float to string example

main.go

package main

import (
	"fmt"
	"reflect"
)

func main() {
	b := 12.454
	fmt.Println(b)
	fmt.Println(reflect.TypeOf(b))

	s := fmt.Sprintf("%v", b)
	fmt.Println(s)
	fmt.Println(reflect.TypeOf(s))
}

In the above example, we have converted float value to a string and printed in golang console. let’s check the output.

Output

12.454
float64
12.454
string

I hope it helps you, All the best 👍.

Try it Yourself

Premium Content

You can get all the below premium content directly in your mail when you subscribe us

Books

Portfolio Template

View | Get Source Code

Cheat Sheets

Cheat Sheets Books are basically Important useful notes which we use in our day-to-day life.

I'm working on some more Cheat Sheets book on Jquery, TypeScript, React js and for other languages. I will send it once it's completed.

Stay tuned working on React Js Cheat Sheets Book

Related Posts