You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Mateusz Zakarczemny (JIRA)" <ji...@apache.org> on 2014/10/07 15:05:33 UTC

[jira] [Created] (CSV-135) Char escape doesn't work

Mateusz Zakarczemny created CSV-135:
---------------------------------------

             Summary: Char escape doesn't work
                 Key: CSV-135
                 URL: https://issues.apache.org/jira/browse/CSV-135
             Project: Commons CSV
          Issue Type: Bug
          Components: Printer
    Affects Versions: 1.0
            Reporter: Mateusz Zakarczemny


Following code:
{code}
CSVFormat format = CSVFormat.DEFAULT
	.withRecordSeparator('\n')
	.withQuote('"')
	.withEscape('\\');

CSVPrinter printer = new CSVPrinter(System.out, format);
List<String> l = new LinkedList<String>();
l.add("\"");
l.add("\n");
l.add("\\");
printer.printRecord(l);
{code}
produces
{quote}
"""","
","\"
{quote}
instead of
{quote}
"\"","\n","\\"
{quote}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)