英文:
How to parse datetime in golang in special format?
问题
我有一个特殊的时间字符串,像这样:February 24, 2017 , 1:44 pm
,我想将其转换为一个 golang 的 time.Time 对象,有人知道如何做这个工作吗?我尝试使用 time.Parse()
,但总是出错。
谢谢。
英文:
I has a special time string like this: February 24, 2017 , 1:44 pm
and want to translate it to a golang time.Time object, does anyone know how to do this work. I have tried to using time.Parse()
, but always got errors.
Thanks.
答案1
得分: 2
使用格式字符串January 2, 2006 , 3:04 pm
来解析这种类型的字符串。
示例:
https://play.golang.org/p/4HgRekLr-7
英文:
Use the format string January 2, 2006 , 3:04 pm
to parse that kind of string.
Example:
https://play.golang.org/p/4HgRekLr-7
答案2
得分: 0
请阅读 https://golang.org/pkg/time/#pkg-constants 了解如何定义自己的格式或使用预定义的格式。
英文:
Read https://golang.org/pkg/time/#pkg-constants to know how to define your own formats or use predefined formates.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论