We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a97793 commit 0c9f44fCopy full SHA for 0c9f44f
1 file changed
src/utilities/utilities.cpp
@@ -20,6 +20,7 @@
20
#include <string>
21
#include <vector>
22
23
+#include "boost/algorithm/string/replace.hpp"
24
25
26
std::string
@@ -39,6 +40,7 @@ tab_separated(const std::vector<std::string> &columns) {
39
40
if (column.empty() || column == "") {
41
result += "\\N\t";
42
} else {
43
+ boost::replace_all(column, "\\", "\\\\");
44
result += column + "\t";
45
}
46
0 commit comments