til/Development/Go/time.md

1.1 KiB

time

To parse string to time in golang, must define layout first.

Read default layouts in Constants.

The reference time:

Mon Jan 2 15:04:05 MST 2006

To define your layout, rewrite reference time in your layout.

Example Parse:

layout := "2006-01-02 15:04:05"

t, err := time.Parse(layout, "2020-06-09 23:04:02")
if err != nil {
    log.Fatal(err)
}

fmt.Println(t)

Example ParseInLocation:

layout := "2006-01-02 15:04:05"

loc, err := time.LoadLocation("Asia/Ho_Chi_Minh")
if err != nil {
    log.Fatal(err)
}

t, err := time.ParseInLocation(layout, "2020-06-09 23:04:02", loc)
if err != nil {
    log.Fatal(err)
}

fmt.Println(t)

Example Format with layout:

now := time.Now()

layout := "2006-01-02"
fmt.Println(now.Format(layout))

Example Format with layout and location:

loc, err := time.LoadLocation("Asia/Ho_Chi_Minh")
if err != nil {
    return "", err
}

now := time.Now().In(loc)

layout := "2006-01-02"
fmt.Println(now.Format(layout))