Re: [go-nuts] parsing millisecond coming after colon

2016-09-13 Thread Geetha Adinarayan
conds that use > a character other than . as a decimal separator. > > One possible workaround would be to replace all the : with . first: > > https://play.golang.org/p/h_IMQxtoVI > > -Caleb > > On Mon, Sep 12, 2016 at 1:17 PM, Geetha Adinarayan > > wrote: > >

[go-nuts] parsing millisecond coming after colon

2016-09-12 Thread Geetha Adinarayan
Hi, I am trying to parse time coming in "6/9/15 15:54:04:393 CST" format. Note : before millisecond. When there is dot before millisecond, time.parse is working fine.. but when there is : before millisecond, time.parse does not work. am I missing anything? I tried the following package main