본문 바로가기
Programing Language/Golang

[Golang] 숫자 문자 변환

by pcm9881 2023. 2. 6.

uint -> string

package main

import (
	"strconv"
)

func main() {
	var i uint = 1000000
	s := strconv.FormatUint(uint64(i), 10)
}

string -> uint

package main

import (
	"strconv"
)

func main() {
	u64, err := strconv.ParseUint("100000000", 10, 64)
	if err != nil {
   		fmt.Println(err)
	}
    
    n := uint(u64)
}

참조 

https://mingrammer.com/gobyexample/number-parsing/

 

Go by Example: 숫자 파싱

문자열로부터 숫자를 파싱하는건 많은 프로그램에서 기본적이지만 일반적인 작업입니다. Go에서 이를 어떻게 하는지 살펴봅시다. 내장 패키지 strconv는 숫자 파싱을 제공합니다. import "strconv" impo

mingrammer.com

'https://stackoverflow.com/questions/57187889/how-to-convert-uint-type-into-string-type-in-golang

 

How to convert "uint" type into "string" type in Golang?

I'm working on a piece of code that returns uint data type. I need to convert uint datatype into string for further processing. I've already tried strconv package and none of the functions accept ...

stackoverflow.com

 

728x90

'Programing Language > Golang' 카테고리의 다른 글

[Golang] gomail 이메일 발송  (0) 2023.01.07

댓글