Can anybody recommend a way to parse CSV files with options to:
- set cells/fields separator
- set end of record/row terminator
- set quote-character for fields
- support of UTF-8 strings
- ability to write in-memory CSV structure back to a file
I did try Text.CSV but it's very simple and lacks most of the above features. Is there some more advanced CSV parsing module or do I have to write it "from scratch" i.e. using Text.ParserCombinators? I do not intend to reinvent a wheel.
Take care.
