如何在 golang 中解析这个奇怪的日期时间 2018-10-22T2250?我找不到日期布局
1 回答
一只斗牛犬
TA贡献1784条经验 获得超2个赞
您可以创建自己的自定义格式。在生产中,您还应该处理错误。
package main
import (
"fmt"
"time"
)
func main() {
timeString := "2018-10-22T2250"
timeFormat := "2006-01-02T1504"
t, _ := time.Parse(timeFormat, timeString)
fmt.Println(t)
}
游乐场链接
这将返回 UTC 时间。您可能需要调整到另一个时区,具体取决于您的来源。
//init the location
loc, _ := time.LoadLocation("Asia/Shanghai")
//localize the time
localTime := t.In(loc)
- 1 回答
- 0 关注
- 109 浏览
添加回答
举报
0/150
提交
取消