I'm reading a CSV from a legacy system that has multi line records separated by ,END
.
I'm trying to use Univocity parsers to parse the CSV line by line where each 'line' runs until ,END.
I have tried using .setLineSeparator(",END");
but it seems to be limited to 2 chars.
Is there any way to use Univocity to parse with a line separator of more than 2 chars?