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 check string contains uppercase lowercase character in Golang?
Print index and element or data from Array, Slice and Map
Example: How to use TeeReader from IO Package in Golang?
Split URL and Get Parameters from URL
How to check if a string contains a white space in Golang?
Example: Arrays of Arrays, Arrays of Slices, Slices of Arrays and Slices of Slices