Golang : Calculate future date with time.Add() function
Problem :
You need to calculate future dates by number of days. This can be use in calculating expiring dates or day to execute certain task. How to do that in Golang?
Solution :
Use time.Add()
function to calculate the different between today and future date.
For example :
package main
import (
"fmt"
"time"
)
func main() {
now := time.Now()
fmt.Println("Today : ", now.Format("Mon, Jan 2, 2006 at 3:04pm"))
threeDays := time.Hour * 24 * 3
diff := now.Add(threeDays)
fmt.Println("Three days from now will be : ", diff.Format(time.ANSIC))
}
Sample output :
Today : Mon, May 18, 2015 at 11:03am
Three days from now will be : Thu May 21 11:03:31 2015
References :
http://golang.org/pkg/time/#Time.Add
https://www.socketloop.com/tutorials/golang-calculate-time-different
See also : 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
+12.3k Golang : Exit, terminating or aborting a program
+51.6k Golang : How to get time in milliseconds?
+7.7k Golang : Grayscale Image
+18.6k Golang : Padding data for encryption and un-padding data for decryption
+4.2k Linux/MacOSX : Search and delete files by extension
+24.9k Golang : Storing cookies in http.CookieJar example
+10.8k Golang : Generate random elements without repetition or duplicate
+18.7k Golang : Check whether a network interface is up on your machine
+7.1k Golang : alternative to os.Exit() function
+8.1k Golang : Implementing class(object-oriented programming style)
+19.2k Golang : How to count the number of repeated characters in a string?
+5.2k How to check with curl if my website or the asset is gzipped ?