Wireshark-bugs: [Wireshark-bugs] [Bug 10284] _ws.col.Info field contains non-escaped quotes (for

Date: Fri, 30 Oct 2015 14:23:28 +0000

Comment # 8 on bug 10284 from
There are actually two ways of escaping for CSV….

One way is to use "This is an \"example\" for quotes".
The other is "This is another ""example"" for quotes". (used by encoding/csv in
Go)

This means:
" should be replaced with \" or "". 
"" should be replaced with \"\" or """".


You are receiving this mail because:
  • You are watching all bug changes.