Golang : Get month name from date example
Problem:
You have a date and you want to get the month name from the date. For example,10/10/2017
should give you October or 03/11/2018
returns March. Both dates are mm/dd/yyyy
format.
How to do that?
Solution:
Use the .Date()
method to get month name. You can convert the date to Golang's time.Time
type first if needed. See https://www.socketloop.com/tutorials/golang-convert-date-or-time-stamp-from-string-to-time-time-type
Here is a sample code:
package main
import (
"fmt"
"time"
)
func main() {
now := time.Now()
fmt.Println("Now is : ", now)
// get month name from now
_, month, _ := now.Date()
fmt.Println("and the month is : ", month)
}
Output:
Now is : 2017-02-07 11:51:46.190819028 +0800 MYT
and the month is : February
References:
https://www.socketloop.com/tutorials/golang-how-to-get-year-month-and-day
See also : Golang : How to get 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
+22.4k Golang : How to run Golang application such as web server in the background or as daemon?
+12.9k Golang : Send data to /dev/null a.k.a blackhole with ioutil.Discard
+12.2k Golang : Convert a rune to unicode style string \u
+6k Golang : Denco multiplexer example
+12.8k Golang : Transform comma separated string to slice example
+15.1k Golang : Submit web forms without browser by http.PostForm example
+11.3k Golang : Roll the dice example
+10.4k Golang : How to profile or log time spend on execution?
+12.5k Golang : Validate email address
+18.8k Golang : Send email with attachment
+15.2k Golang : Search folders for file recursively with wildcard support
+8.4k Golang : Qt splash screen with delay example