Golang : Calculate elapsed years or months since a date
This is additional tutorial to our previous tutorial on how to calculate elasped run time. We will learn how to calculate the elapsed time in years, month and day.
NOTE : it is important to note that if you're trying this out in play.golang.org, please note that the time started on :
2009-11-10 23:00:00
and
Here it is :
package main
import (
"fmt"
"time"
)
func main() {
format := "Jan 2, 2006" // just a format. not taken into calculation
date := "Oct 29, 1978"
start, _ := time.Parse(format, date)
end := time.Since(start)
years := end / time.Hour / 24 / 365
fmt.Printf("%d years passed since %s\n", years, date)
months := years * 12
fmt.Printf("%d months passed since %s\n", months, date)
// calculating days can be tricky - need to factor in leap years and timezones(daylight saving)
}
output :
36 years passed since Oct 29, 1978
432 months passed since Oct 29, 1978
and if the code is executed on http://play.golang.org/p/SDs6NkInrL
31 years passed since Oct 29, 1978
372 months passed since Oct 29, 1978
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
+22.5k Golang : Convert seconds to minutes and remainder seconds
+6.9k Get Facebook friends working in same company
+5.7k PHP : Convert CSV to JSON with YQL example
+36.5k Golang : Convert date or time stamp from string to time.Time type
+24.6k Golang : Change file read or write permission example
+22.8k Generate checksum for a file in Go
+5k HTTP common errors and their meaning explained
+5.2k Golang : Check if a word is countable or not
+20.4k Golang : Compare floating-point numbers
+6.3k Golang : Get missing location after unmarshal binary and gob decode time.
+26.4k Golang : Calculate future date with time.Add() function
+5.1k Golang : Calculate a pip value and distance to target profit example