英文:
How to format todays date in go as dd-mm-yyyy?
问题
我正在尝试在Go语言中格式化今天的日期,但似乎在一些我认为很简单的事情上遇到了困难。
我想以dd-mm-yyyy的格式获取今天的日期。
有什么想法吗?
谢谢
英文:
I am trying to format todays date in golang and seem to be struggling with something i deem to be quite simple.
I am trying to get todays date in the format of dd-mm-yyy
any ideas?
thanks
答案1
得分: 25
这是Go Playground中的工作方式:https://play.golang.org/p/kBjTxZS9Y7
以下是代码:
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println(time.Now().Format("02-01-2006"))
}
请注意,这是一个打印当前日期的简单程序。
英文:
It works this way in Go Playground: https://play.golang.org/p/kBjTxZS9Y7
Here is the code:
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println(time.Now().Format("02-01-2006"))
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论