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? |
Answered by
osiegmar
Mar 12, 2023
Replies: 3 comments 1 reply
|
A Tab character can be easily configured by |
0 replies
Answer selected by
osiegmar
|
Thx |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


A Tab character can be easily configured by
CsvReader.builder().fieldSeparator('\t'). Multi-Character values (for fieldSeparator, quoteCharacter and commentCharacter) are not possible.