Golang : Change date format to yyyy-mm-dd
Problem :
Your Golang program is producing date in long form that look like this :
2015-08-11 17:21:52.776537624 +0800 MYT
and you want to change the format to short form - yyyy-mm-dd
. How to do that?
Solution :
Use the time.Time.Format()
function. For example :
package main
import (
"fmt"
"time"
)
func main() {
now := time.Now()
fmt.Println("Before : ", now)
// reduce the date format
// remember NOT to use 2006-01-01 or 02-02 or same digit
// for month and date. Will cause weird date result
//fmt.Println(now.Format("2006-01-01")) <--- WRONG
fmt.Println("After : ", now.Format("2006-01-02")) // <-- CORRECT
}
Sample output :
Before : 2015-08-11 17:29:07.626918059 +0800 MYT
After : 2015-08-11
See also : Golang : Date and Time formatting
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
+16.5k Golang : Delete files by extension
+6k Golang : Build new URL for named or registered route with Gorilla webtoolkit example
+6.5k Golang : Warp text string by number of characters or runes example
+6.5k Unix/Linux : How to get own IP address ?
+20.1k Golang : Determine if directory is empty with os.File.Readdir() function
+21.8k Golang : Use TLS version 1.2 and enforce server security configuration over client
+6.6k Golang : Check if password length meet the requirement
+8.5k Python : Fix SyntaxError: Non-ASCII character in file, but no encoding declared
+13.1k Golang : How to calculate the distance between two coordinates using Haversine formula
+39.5k Golang : Remove dashes(or any character) from string
+12k Golang : Sort and reverse sort a slice of runes
+16.3k Golang : Convert slice to array