Hi, >From a 3rd party I get a file with time like 1503 or 900 (meaning 3:03PM or 9:00 AM)
so I thought I could use this format: https://play.golang.org/p/RKR71hTWGo x, err := time.Parse("1504", "900") but the result is: 2009/11/10 23:00:00 parsing time "900": hour out of range As a work around I check if the time is only 3 char long and then I prepend a 0, then parsing is ok. Is this the only way or am I missing anything? Thank you. Diego -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.