[ 
https://issues.apache.org/jira/browse/CSV-135?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16859836#comment-16859836
 ] 

Opher Shachar commented on CSV-135:
-----------------------------------

I think this
{quote}The problem arises when both quoting and escaping are specified.
{quote}
is _never_ the case. {{CSVFormat}} will either do {{printWithQuotes}} _OR_ 
{{printWithEscapes}}, irrespective of setting both {{quoteCharacter}} and 
{{escapeCharacter}}.

> 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
>            Priority: Major
>             Fix For: Patch Needed
>
>
> 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
> {code}
> """","
> ","\"
> {code}
> instead of
> {code}
> "\"","\n","\\"
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to