Re: [go-nuts] Re: time.Parse with millisecond separated by colon

2017-10-30 Thread Diego Medina
Thanks, for our case, it will be easy enough to just change : for . and move on from there. Thanks On Monday, October 30, 2017 at 4:55:03 PM UTC-4, Rob 'Commander' Pike wrote: > > Or you could change the : to a . and use time.Parse. > > -rob > > > On Tue, Oct 31, 2017 at 4:47 AM, Jim Cote > > w

Re: [go-nuts] Re: time.Parse with millisecond separated by colon

2017-10-30 Thread Rob Pike
Or you could change the : to a . and use time.Parse. -rob On Tue, Oct 31, 2017 at 4:47 AM, Jim Cote wrote: > See https://golang.org/src/time/format.go?s=23626:23672#L249. The > standard library is explicitly looking for the period. Your easiest > solution would be to just write your own pars

[go-nuts] Re: time.Parse with millisecond separated by colon

2017-10-30 Thread Jim Cote
See https://golang.org/src/time/format.go?s=23626:23672#L249. The standard library is explicitly looking for the period. Your easiest solution would be to just write your own parser. On Monday, October 30, 2017 at 11:20:51 AM UTC-4, Diego Medina wrote: > > Hi, > > I need to parse datetime data