Hi,
Thanks for your query.
See the following sample code segment for your reference:
e.g
Sample code:
TxtLoadOptions options = new TxtLoadOptions(LoadFormat.CSV);
options.setSeparator(’,’);
Workbook workbook = new Workbook(stringFilePath, options);
…
Moreover, you may use TxtSaveOptions class and specify your desired options while saving/ converting to CSV file format.
Hope, this helps a bit.
Thank you.