We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When in run de program: go run main.go testdata/testfile.xlsx
go run main.go testdata/testfile.xlsx
I get the following result:
"""Foo""";"""Bar""" """Baz """;"""Quuk"""
I'm newbie in go but reading the code I see in line 45:
vals = append(vals, fmt.Sprintf("%q", str))
the %q add quotes but go cw.Write(vals) add quotes too so the result is a lot of quotes 😄
%q
go cw.Write(vals)
golang writer.go line 89
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When in run de program:
go run main.go testdata/testfile.xlsx
I get the following result:
I'm newbie in go but reading the code I see in line 45:
the
%q
add quotes butgo cw.Write(vals)
add quotes too so the result is a lot of quotes 😄golang writer.go line 89
The text was updated successfully, but these errors were encountered: