You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What does 'go version' print?
go version go1.2.1 linux/amd64
What steps reproduce the problem?
Writing a []string or [][]string which include empty strings ("") with
csv.Write() and csv.WriteAll()
http://play.golang.org/p/h7dZPYzaSa
What happened?
"" was written as "\"\"", thus output was:
a,b,c
1,"",3
What should have happened instead?
There should be an option to enable behaviour such that the ouput is:
a,b,c
1,,3