Hi, I am trying to transform a CSV file which contains some string as delimiter (Eg: MY_DE1 is my delimiter unlike comma ,semicolon etc).But when I set like below
CsvDataFormat csv = new CsvDataFormat();
csv.setDelimiter("MY_DE1");
it is giving me following exception
java.lang.IllegalArgumentException: The 'delimiter' attribute must be
exactly one character long.
So my question is ,is there any way to use a string (with multiple chars)
as delimiter in Camel?
