how to convert string to uint8 in golang?
October 02, 2022Hi Friends đź‘‹,
Welcome To aGuideHub! ❤️
To convert string to uint8 in golang, just use ParseUint()
method with uint8()
and pass your string, it will convert string into uint8.
As we know the ParseUint()
method always return uint64
so that’s why we have to use uint8()
to convert uint64
to uint8
.
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 uint8 in golang, as above mentioned I’m going to use ParseUint()
way.
The strconv
package provide ParseUint()
method.
Let’s start our Golang convert string to uint8 example
Convert whole string into uint8 example
main.go
package main
import (
"strconv"
"fmt"
"reflect"
)
func main() {
var s string = "10"
ui64, err := strconv.ParseUint(s, 10, 64)
if err != nil {
panic(err)
}
fmt.Println(ui64, reflect.TypeOf(ui64))
ui := uint8(ui64)
fmt.Println(ui, reflect.TypeOf(ui))
}
In the above example, we have converted string to uint8 and printed in golang console. let’s check the output.
Output
10 uint64
10 uint8
I hope it helps you, All the best đź‘Ť.