将字符串转换为golang中的天/分钟/秒

时间:2019-07-17 09:58:45

标签: datetime go time

我有rfc3339时间格式的字符串。我需要将其转换为分钟/秒。

我试图处理time.layout和.Format但徒劳。

func main() {

    my_layout := "2017-04-25T23:03:00Z"
        # my_input string will be always in the form of rfc3339 style but is a string type "2017-04-25T23:03:00Z"
    my_input := "2017-05-25T23:03:00Z"
    t, _ := time.Parse(my_layout, my_input)
    fmt.Println(t.Format(layout))
}

输出: 1017-00-10T112:12:00Z

我想将给定的(时间样式)字符串转换为分钟/秒

0 个答案:

没有答案