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
How to play and pause execution of goroutine?
How to add Watermark or Merge two image?
How to compare equality of struct, slice and map?
Replace any non-alphanumeric character sequences with a dash using Regex
How to copy a map to another map?
Subtract N number of Year, Month, Day, Hour, Minute, Second, Millisecond, Microsecond and Nanosecond to current date-time.