Golang : Comparing date or timestamp
Problem :
You have to compare two timestamps to see if the they are equal or not.
Solution :
Use time.Equal()
function to compare the timestamps. 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)
// compare time with time.Equal()
sameTime := longTimeAgo.Equal(now)
fmt.Println("longTimeAgo equals to now ? : ", sameTime)
// 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 :
./timecompare
Today : Wed, May 27, 2015 at 12:38am
longTimeAgo equals to now ? : false
18th May 2010 was 1834 days ago
References :
http://godoc.org/time#Time.Equal
https://www.socketloop.com/tutorials/golang-calculate-time-different
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
+21.7k Fix "Failed to start php5-fpm.service: Unit php5-fpm.service is masked."
+10.2k Golang : Allow Cross-Origin Resource Sharing request
+8.8k Golang : Simple histogram example
+77.6k Golang : How to return HTTP status code?
+7.6k Javascript : How to check a browser's Do Not Track status?
+10.5k Golang : Removes punctuation or defined delimiter from the user's input
+5.2k Golang : fmt.Println prints out empty data from struct
+17k Golang : When to use init() function?
+11.2k Golang : Handle API query by curl with Gorilla Queries example
+4.6k HTTP common errors and their meaning explained
+9.4k Golang : Qt get screen resolution and display on center example
+7.1k Golang : alternative to os.Exit() function