Re: [go-nuts] Re: Date parsing problem

2017-03-14 Thread Michael Banzon
Thank you - was looking in that direction atm - this is going to take some work (the CSV is user input, it might be anything) ;-) On Tue, Mar 14, 2017 at 2:13 PM Tamás Gulácsi wrote: > unicode/utf16 or golang.org/x/text/encoding. > > -- > You received this message because you are subscribed to t

Re: [go-nuts] Re: Date parsing problem

2017-03-14 Thread Tamás Gulácsi
unicode/utf16 or golang.org/x/text/encoding. -- 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 htt

Re: [go-nuts] Re: Date parsing problem

2017-03-14 Thread Michael Banzon
Thank you - that sent me in the right direction! The data (read from CSV) has a lot of zero bytes - it is UTF-16 LE with BOM (shrugs) - now I just need to find out how to parse these with into "real" Go strings ;-) On Tue, Mar 14, 2017 at 1:26 PM wrote: > May be non-printable garbage at the beg