잠시만 기다려 주세요

     '입만 나불거리고 행동하지 않는 야당을 규탄한다.'
전체검색 :  
이번주 로또 및 연금번호 발생!!   |  HOME   |  여기는?   |  바다물때표   |  알림 (16)  |  여러가지 팁 (1056)  |  추천 및 재미 (155)  |  자료실 (22)  |  
시사, 이슈, 칼럼, 평론, 비평 (606)  |  끄적거림 (129)  |  문예 창작 (705)  |  바람 따라 (69)  |  시나리오 (760)  |  드라마 대본 (248)  |  
살인!


    golang

golang - golang time format 날짜, 시간, 타임 변환, 치환
이 름 : 바다아이   |   조회수 : 9901         짧은 주소 : https://www.bada-ie.com/su/?501591792235
예제1)

package main

import (
    "fmt"
    "time"
)

func main() {
    var i int64
    i = 1405544146

    tnow := time.Unix(i, 0)
    tnow2 := tnow.Format("2006년 01월 02일")
    fmt.Println(tnow2)
}

결과값

2014년 07월 17일


예제2)


// Go supports time formatting and parsing via
// pattern-based layouts.

package main

import "fmt"
import "time"

func main() {
    p := fmt.Println

    // Here's a basic example of formatting a time
    // according to RFC3339, using the corresponding layout
    // constant.
    t := time.Now()
    p(t.Format(time.RFC3339))

    // Time parsing uses the same layout values as `Format`.
    t1, e := time.Parse(
        time.RFC3339,
        "2012-11-01T22:08:41+00:00")
    p(t1)

    // `Format` and `Parse` use example-based layouts. Usually
    // you'll use a constant from `time` for these layouts, but
    // you can also supply custom layouts. Layouts must use the
    // reference time `Mon Jan 2 15:04:05 MST 2006` to show the
    // pattern with which to format/parse a given time/string.
    // The example time must be exactly as shown: the year 2006,
    // 15 for the hour, Monday for the day of the week, etc.
    p(t.Format("3:04PM"))
    p(t.Format("Mon Jan _2 15:04:05 2006"))
    p(t.Format("2006-01-02T15:04:05.999999-07:00"))
    form := "3 04 PM"
    t2, e := time.Parse(form, "8 41 PM")
    p(t2)

    // For purely numeric representations you can also
    // use standard string formatting with the extracted
    // components of the time value.
    fmt.Printf("%d-%02d-%02dT%02d:%02d:%02d-00:00\n",
        t.Year(), t.Month(), t.Day(),
        t.Hour(), t.Minute(), t.Second())

    // `Parse` will return an error on malformed input
    // explaining the parsing problem.
    ansic := "Mon Jan _2 15:04:05 2006"
    _, e = time.Parse(ansic, "8:41PM")
    p(e)
}

결과값
2009-11-10T23:00:00Z
2012-11-01 22:08:41 +0000 UTC
11:00PM
Tue Nov 10 23:00:00 2009
2009-11-10T23:00:00+00:00
0000-01-01 20:41:00 +0000 UTC
2009-11-10T23:00:00-00:00
parsing time "8:41PM" as "Mon Jan _2 15:04:05 2006": cannot parse "8:41PM" as "Mon"

| |





      1 page / 6 page
번 호 카테고리 제 목 이름 조회수
179 golang golang , ... 바다아이 1732
178 golang golang , map . 바다아이 1336
177 golang Golang (, , data ) , ... 바다아이 1344
176 golang golang sort ... 바다아이 1573
175 golang golang html.EscapeString html.UnescapeString input value ... 바다아이 1703
174 golang golang go.mod go.sum . GOPATH SRC not module, 1.16 . 바다아이 4976
173 golang go 1.16 ... is not in GOROOT.. GOPATH .... . 바다아이 5882
172 golang , String Formatting 바다아이 7514
171 golang rand.Intn , random, , . 바다아이 6973
170 golang golang ... 바다아이 10062
169 golang golang gopath, goroot .. golang 바다아이 7651
168 golang golang ... Force download file example 바다아이 9434
167 golang golang , , cpu, memory, disk 바다아이 10732
166 golang golang , ... GOOS, GOARCH 바다아이 8510
165 golang golang checkbox ... 바다아이 8258
164 golang golang , , http .... 바다아이 8030
163 golang golang nil , nil , nil ... 바다아이 8377
162 golang 2 golang, go , .... golang .... 바다아이 11246
161 golang golang postgresql, mysql, mariadb ... ` Grave () .. .. 바다아이 8562
160 golang golang postgresql mysql, mariadb scan , null .. 바다아이 8707
159 golang golang , iconv 바다아이 11499
158 golang golang quote escape, unquote 바다아이 8907
157 golang golang , http errorLog , , ... 바다아이 9009
156 golang golang interface , 바다아이 8487
155 golang golang struct .... 바다아이 9153
154 golang golang map map , 바다아이 8679
153 golang golang map .... .... 바다아이 8197
152 golang golang slice copy 바다아이 8297
151 golang golang goto 바다아이 9158
150 golang golang slice sort , int, string, float64 바다아이 8639
| |









Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천  실행시간 : 0.07242
to webmaster... gogo sea. gogo sea.