我已尝试使用任何方法解析此字符串“24-Sep.-20”,但仍未解析,因为该字符串具有句点。我想将日期转换为“24-09-2020”。我该怎么做?
1 回答
翻翻过去那场雪
TA贡献2065条经验 获得超14个赞
只需通过在 () 之前添加 () 来更新时间布局,然后将解析时间重新格式化为新布局。.-
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
- 1 回答
- 0 关注
- 84 浏览
添加回答
举报
0/150
提交
取消