I tried to parse a CSV file with two APIs - JSefa and OpenCSV - but the problem is that the separator in the CSV file is a double tab "\t\t" and the APIs only accept a character, not a string, for the separator.
Is there any other API that could solve the problem, or there s a way to determine a new String separator in Jsefa or OpenCSV?
As a last resort I could, before parsing, try to replace the double tab by a semicolon but I was hoping to do it a cleaner way.