从 Go 中的无效字符串“24-9 月-20 日”解析时间

我已尝试使用任何方法解析此字符串“24-Sep.-20”,但仍未解析,因为该字符串具有句点。

我想将日期转换为“24-09-2020”。

我该怎么做?


波斯汪
浏览 86回答 1
1回答

翻翻过去那场雪

只需通过在 () 之前添加 () 来更新时间布局,然后将解析时间重新格式化为新布局。.-func main() {    date := "24-Sep.-20"    layout := "02-Jan.-06"    t, _ := time.Parse(layout, date)    newLayout := "02-01-2006"    output := t.Format(newLayout)    fmt.Println(output)}游乐场: https://play.golang.org/p/AgR3DFRrK0q
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go