Golang : Calculate time different
Problem :
You are looking to calculate the days between two dates. How to do that in Golang?
Solution :
Use the Time.Sub()
function to calculate the differences between the two dates in hour and then convert the hour differences to day.
For example :
package main
import (
"fmt"
"time"
)
func main() {
now := time.Now()
fmt.Println("Today : ", now.Format("Mon, Jan 2, 2006 at 3:04pm"))
longTimeAgo := time.Date(2010, time.May, 18, 23, 0, 0, 0, time.UTC)
// calculate the time different between today
// and long time ago
diff := now.Sub(longTimeAgo)
// convert diff to days
days := int(diff.Hours() / 24)
fmt.Printf("18th May 2010 was %d days ago \n", days)
}
Sample output :
Today : Mon, May 18, 2015 at 10:50am
18th May 2010 was 1825 days ago
Reference :
See also : Golang : Get current, epoch time and display by year, month and day
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
+17.8k Golang : Parse date string and convert to dd-mm-yyyy format
+16.9k Golang : Get own process identifier
+5.4k PHP : Hide PHP version information from curl
+22.2k Golang : Repeat a character by multiple of x factor
+11.6k Golang : Handle API query by curl with Gorilla Queries example
+9.1k Golang : How to use Gorilla webtoolkit context package properly
+11.6k Golang : Change date format to yyyy-mm-dd
+17.2k Golang : Fix cannot convert buffer (type *bytes.Buffer) to type string error
+15.4k Golang : Delete certain files in a directory
+8.5k Golang : Implementing class(object-oriented programming style)
+8.9k Golang : On lambda, anonymous, inline functions and function literals
+9.9k Golang : Resumable upload to Google Drive(RESTful) example