일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Logrus
- notification system
- 배포 프로세스
- golang
- 대규모 시스템 설계
- go
- 사설 ip
- gitops
- GoF 디자인패턴
- 윈도우키보드
- intellij ide
- goland
- 오블완
- Intellij
- UnBuffered channel
- Kubernetes
- elasticsearch
- 컴포지트패턴
- apollo router
- m4 pro
- AWS
- System Design
- 디자인패턴
- Buffered channel
- GoF
- 티스토리챌린지
- http 413
- Infra
- body size
- 배포 파이프라인
- Today
- Total
목록프로그래밍언어/Golang (12)
Fall in IT.
안녕하세요. 오늘은 Golang에서 숫자(int)인 문자열을 숫자(int)로 변경하기 등 자주 사용되는 data parsing 방법에 대해서 알아보겠습니다. package main import ( "fmt" "reflect" "strconv" ) func main() { fmt.Println("say hi") // 1. int to string - 숫자(정수)를 문자열로 변환 a := strconv.Itoa(100) fmt.Println("a: ", a) // a: 100 fmt.Println("type a: ", reflect.TypeOf(a)) // type a: string // 1-1. int to string - 100을 10진수 문자열로 변환 aa := strconv.FormatInt(100,..
안녕하세요. 오늘은 Golang에서 시간을 간단하게 변환하는 방법에 대해서 알아보겠습니다. 알아볼것 문자열 시간을 Time 타입으로 변경하는 방법 Time 타입의 시간을 특정포맷의 문자열로 변경하는 방법 시간차 구하는 방법 샘플코드 # 1. 문자열 시간을 Time 타입으로 변경하는 방법 currentTime := "2020-07-30" t, _ := time.Parse("2006-01-02", currentTime) fmt.Println(t) # 2. Time 타입의 시간을 특정포맷의 문자열로 변경하는 방법 a := t.Format("2006.01.02") fmt.Println(a) # 3. 시간차 구하는 방법 t2, _ := time.Parse("2006-01-02","2020-07-20") days ..