Golang : Get today's weekday name and calculate target day distance example
Let's calculate how long it will take to reach Friday from today using switch evaluation. The code sample below will get today's weekday and evaluate the sum of today + n (n is the number of days) before hitting Friday.
package main
import (
"fmt"
"time"
)
func main() {
today := time.Now().Weekday()
fmt.Println("Today is ", today)
fmt.Println("When's Friday?")
switch time.Friday {
case today + 0:
fmt.Println("Today.")
case today + 1:
fmt.Println("Tomorrow.")
case today + 2:
fmt.Println("In two days.")
case today + 3:
fmt.Println("In three days.")
case today + 4:
fmt.Println("In four days.")
case today + 5:
fmt.Println("In five days.")
default:
fmt.Println("Will be sometime away.")
}
}
Sample output :
Today is Monday
When's Friday?
In four days.
Reference :
https://www.socketloop.com/references/golang-time-time-weekday-function-example
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
+8.2k Golang : Convert word to its plural form example
+34.4k Golang : How to stream file to client(browser) or write to http.ResponseWriter?
+32.5k Golang : Regular Expression for alphanumeric and underscore
+20.4k Android Studio : AlertDialog and EditText to get user string input example
+16.6k Golang : Read integer from file into array
+9.6k Golang : Format strings to SEO friendly URL example
+10.7k Golang : Natural string sorting example
+14.4k Golang : Rename directory
+5.3k Golang : Get S3 or CloudFront object or file information
+26.2k Golang : Calculate future date with time.Add() function
+12.6k Golang : Add ASCII art to command line application launching process