Get Year, Month, Day, Hour, Min and Second from a specified date
Example
package main
import (
"fmt"
"time"
)
func main() {
t := time.Date(2015, 02, 21, 23, 10, 52, 211, time.UTC)
fmt.Println(t)
fmt.Println("\n######################################\n")
y := t.Year()
mon := t.Month()
d := t.Day()
h := t.Hour()
m := t.Minute()
s := t.Second()
n := t.Nanosecond()
fmt.Println("Year :",y)
fmt.Println("Month :",mon)
fmt.Println("Day :",d)
fmt.Println("Hour :",h)
fmt.Println("Minute :",m)
fmt.Println("Second :",s)
fmt.Println("Nanosec:",n)
}
Output
2015-02-21 23:10:52.000000211 +0000 UTC
######################################
Year : 2015
Month : February
Day : 21
Hour : 23
Minute : 10
Second : 52
Nanosec: 211
Most Helpful This Week
Regular expression to extract all Non-Alphanumeric Characters from a String
Find length of Channel, Pointer, Slice, String and Map
How to iterate over a Map using for loop in Go?
How to play and pause execution of goroutine?
How to kill execution of goroutine?
Print index and element or data from Array, Slice and Map