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
+10.8k Golang : Read until certain character to break for loop
+11.9k Golang : Split strings into command line arguments
+9.4k Random number generation with crypto/rand in Go
+8.9k Golang : Write multiple lines or divide string into multiple lines
+15.6k Golang : Read a file line by line
+9.8k Golang : Read file and convert content to string
+8.7k Golang : What is the default port number for connecting to MySQL/MariaDB database ?
+14k Golang : Recombine chunked files example
+5.9k Golang : Debug with Godebug
+10.2k Golang : Create matrix with Gonum Matrix package example
+11.4k How to tell if a binary(executable) file or web application is built with Golang?
+11.4k Golang : Calculations using complex numbers example