how to convert string to int32 in golang?

Hi Friends đź‘‹,

Welcome To aGuideHub! ❤️

To convert string to int32 in golang, just use ParseInt() method with int32() and pass your string, it will convert string into int32.

As we know the ParseInt() method always return int64 so that’s why we have to use int32() to convert int64 to int32.

Important Points

Difference between int and uint

UInt does not allow for negative numbers.

uint’s and int’s max value

uint8  : 0 to 255 
uint16 : 0 to 65535 
uint32 : 0 to 4294967295 
uint64 : 0 to 18446744073709551615 
int8   : -128 to 127 
int16  : -32768 to 32767 
int32  : -2147483648 to 2147483647 
int64  : -9223372036854775808 to 9223372036854775807

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 string to int32 in golang, as above mentioned I’m going to use ParseInt() way.

The strconv package provide ParseInt() method.

Let’s start our Golang convert string to int32 example

Convert whole string into int32 example

In this below example to parse string to int golang I have used parseint method which is available in the strconv package.

The ParseInt golang function is used to convert a string into an int.

main.go

package main

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

func main() {
	var s string = "10"
  i, err := strconv.ParseInt(s, 10, 64)
  if err != nil {
      panic(err)
  }
  fmt.Println(i, reflect.TypeOf(i))
  
  i32 := int32(i)
  fmt.Println(i32, reflect.TypeOf(i32))
}

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

Output

10 int64
10 int32

Try it Yourself

I hope it helps you, All the best đź‘Ť.

Premium Content

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

Books

Interview Questions

Soon You will get CSS, JavaScript, React Js, and TypeScript So Subscribe to it.

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.

Related Posts