英文:
How do I parse the following time in Golang?
问题
这个时间戳 2021-10-07 12:44:22 +0530
的解析布局是什么样的?我尝试了所有的组合,但似乎都不对!感谢你的帮助!
顺便说一下,这个格式是由一个 Ruby 客户端(与 Go HTTP 服务器通信)生成的。
英文:
What does the layout for parse look like for this timestamp 2021-10-07 12:44:22 +0530
? I've tried all combinations and still can't seem to get it right! Thanks for all your help!
Btw, this format is generated by a Ruby client (speaking to the Go HTTP Server).
答案1
得分: 1
使用格式字符串"2006-01-02 15:04:05 -0700"
来解析问题中的时间:
t, err := time.Parse("2006-01-02 15:04:05 -0700", "2021-10-07 12:44:22 +0530")
英文:
Use the format string "2006-01-02 15:04:05 -0700"
to parse the time in the question:
t, err := time.Parse("2006-01-02 15:04:05 -0700", "2021-10-07 12:44:22 +0530")
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论