Golang : Convert int(year) to time.Time type
Problem :
You have integer value such as a year and you want to convert the integer to time.Time type. How to do that?
Solution :
Parse the integer with time.Date()
function and return the time.Time type
package main
import (
"fmt"
"time"
)
func YearTime(y int) time.Time {
// convert int to Time - use the last day of the year, which is 31st December
t := time.Date(y, time.December, 31, 0, 0, 0, 0, time.Local)
return t
}
func main() {
yTime := YearTime(2015)
fmt.Println("Year is : ", yTime.Year())
}
Output :
Year is : 2015
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+12.6k Golang : List objects in AWS S3 bucket
+4.6k Golang : Get a list of crosses(instruments) available to trade from Oanda account
+6.3k Golang : Reverse by word
+46.7k Golang : Convert int to byte array([]byte)
+10.8k Golang : How to use if, eq and print properly in html template
+26.8k Golang : Convert integer to binary, octal, hexadecimal and back to integer
+7.3k Golang : How to execute code at certain day, hour and minute?
+34.3k Golang : Integer is between a range
+34.6k Golang : Strip slashes from string example
+12.9k Golang : Read from buffered reader until specific number of bytes
+17k Golang : Defer function inside init()
+9.7k Golang : Get login name from environment and prompt for password