How do I use multiple characters as field separators? #77
-
In the source code, CsvReader and CsvWriter, the CsvWriterBuilder class fieldSeparator field is of type char. How can I use Tab and custom multi-characters as field separators? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
A Tab character can be easily configured by |
Beta Was this translation helpful? Give feedback.
-
Why is this exact feature listed in the README if it isn't supported? |
Beta Was this translation helpful? Give feedback.
A Tab character can be easily configured by
CsvReader.builder().fieldSeparator('\t')
. Multi-Character values (for fieldSeparator, quoteCharacter and commentCharacter) are not possible.