英文:
Parse time seconds to clock in Golang
问题
如何在Golang中将时间秒解析为时钟格式?
例如:
输入:0 => 输出:'12:00 AM'
输入:60 => 输出:'12:01 AM'
输入:60*60 => 输出:'1:00 AM'
英文:
How to parse time seconds to the clock format in Golang?
For example:
input: 0 => output: '12:00 AM'
input: 60 => output: '12:01 AM'
input: 60*60 => output: '1:00 AM'
答案1
得分: 5
将秒数放入time.Date
函数中:
t := time.Date(0, 0, 0, 0, 0, sec, 0, time.UTC)
fmt.Println(t.Format("03:04 PM"))
https://play.golang.org/p/zV720y4E-o
英文:
Put the number of seconds into the time.Date
function:
t := time.Date(0, 0, 0, 0, 0, sec, 0, time.UTC)
fmt.Println(t.Format("03:04 PM"))
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论