Converting a string variable into Boolean, Integer or Float type in Golang

A guide on how to convert a string into Boolean, Integer, or Float types in Golang. This article will help you understand how to use Go's built-in functions to work with different data types.

In Go, we can use functions like strconv.ParseBool, strconv.Atoi, and strconv.ParseFloat to convert strings into different types such as Boolean, Integer, and Float. These are common and efficient methods to handle string input data.

Golang Code

package main

import (
    "fmt"
    "strconv"
)

func main() {
    // String variables to be converted
    strBool := "true"
    strInt := "123"
    strFloat := "123.45"

    // Convert to Boolean
    boolValue, err := strconv.ParseBool(strBool)
    if err != nil {
        fmt.Println("Error parsing boolean:", err)
    } else {
        fmt.Println("Boolean value:", boolValue)
    }

    // Convert to Integer
    intValue, err := strconv.Atoi(strInt)
    if err != nil {
        fmt.Println("Error parsing integer:", err)
    } else {
        fmt.Println("Integer value:", intValue)
    }

    // Convert to Float
    floatValue, err := strconv.ParseFloat(strFloat, 64)
    if err != nil {
        fmt.Println("Error parsing float:", err)
    } else {
        fmt.Println("Float value:", floatValue)
    }
}

Detailed explanation:

  1. import "strconv": Imports the strconv package to use its string conversion functions.
  2. strBool := "true", strInt := "123", strFloat := "123.45": Creates string variables with Boolean, Integer, and Float values.
  3. strconv.ParseBool(strBool): Converts the string to a Boolean value.
  4. strconv.Atoi(strInt): Converts the string to an Integer value.
  5. strconv.ParseFloat(strFloat, 64): Converts the string to a Float value with 64-bit precision.
  6. Error handling with err != nil: Prints an error message if the conversion fails.

Tips:

  • Always check for errors after every conversion to ensure valid input data.
  • Use appropriate precision for floating-point numbers (float32 or float64) to save resources.
Tags: Golang, String


Related

How to split a string in Golang using the SplitAfter function

A guide on how to use the `SplitAfter` function in Golang to split a string based on a specific character or substring. This article provides a detailed explanation of how the function works, along with examples.
How to Split a String in Golang Using the SplitAfterN Function

A guide on how to use the `SplitAfterN` function in Golang to split a string based on a separator and limit the number of resulting parts. This function is useful when you need to split a string but retain the separator.
How to Split a String in Golang Using the Split function

This article explains how to use the `Split` function in Go (Golang) to break a string into smaller substrings based on a delimiter. It's a common operation in Go programming when dealing with strings.
Create a Simple Chat Application Using Socket.IO in Golang

A step-by-step guide to building a simple chat application using Socket.IO in Golang, helping you understand how real-time communication works in web applications.
Slices in Golang: Usage and examples

This article explains how to work with slices in Golang, including how to declare, access, and manipulate slices—a flexible way to handle arrays more efficiently in Go.
How to convert a Markdown string to HTML using Golang

A detailed guide on how to convert a Markdown string to HTML in Golang using the `blackfriday` library.
How to DELETE data from a MySQL database using Golang

A guide on how to connect and delete data from a table in a MySQL database using the Golang programming language.
How to write data to an Excel file using Golang

A detailed guide on how to write data to an Excel file using Golang with the excelize library.
How to Post Data to API Using Golang

This article guides you on how to send data to an API using the POST method in Golang, helping you better understand how to interact with web services.
Guide to Reading Excel Files Using Golang

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Golang, utilizing the excelize library with step-by-step installation and illustrative examples.

main.add_cart_success