Golang : Date and Time formatting
Our civilizations won't progress till this stage without proper understanding, parsing and organising our lives base on date and time. Golang's time package has the functions to help us to deal with time and date.
Here is a example of parsing time as string to timestamp and changing the time format.
package main
import (
"fmt"
"time"
)
func main() {
// get current timestamp
currentTime := time.Now().Local()
fmt.Println(currentTime)
// don't like the standard format ?
// change it
newFormat := currentTime.Format("2006-01-02 15:00:00 +0800")
fmt.Println(newFormat)
fmt.Println("===============================")
// Changing time layout(form)
str := "Dec 29, 2014 at 7:54pm (SGT)"
newLayout := "Jan 2, 2006 at 3:04pm (MST)"
newTime, _ := time.Parse(newLayout, str)
fmt.Println(newTime)
}
Output :
2014-12-29 12:04:53.531591733 +0800 SGT
2014-12-29 12:00:00 +0800
===============================
2014-12-29 19:54:00 +0800 SGT
Reference :
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
+15.6k Golang : Read a file line by line
+6.3k Golang : Convert an executable file into []byte example
+7.3k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image
+12.8k Golang : Handle or parse date string with Z suffix(RFC3339) example
+6.8k Restart Apache or Nginx web server without password prompt
+5.9k Golang : Get missing location after unmarshal binary and gob decode time.
+6.5k Unix/Linux : How to fix CentOS yum duplicate glibc or device-mapper-libs dependency error?
+12.2k Golang : "https://" not allowed in import path
+18.2k Golang : Find IP address from string
+6.5k Golang : Get expvar(export variables) to work with multiplexer
+16.3k Golang : Merge video(OpenCV) and audio(PortAudio) into a mp4 file
+7k Golang : File system scanning