Changes between Initial Version and Version 4 of Ticket #3227


Ignore:
Timestamp:
2015-03-20T10:48:11Z (10 years ago)
Author:
Adrian Pop
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3227

    • Property Cc Manfred.Rode@… Lennart Ochel Vitalij Ruge added
    • Property Status newaccepted
    • Property Summary Change the external input csv file delimiterMake possible to change the csv file delimiter char and quote char (for input file and output file)
  • Ticket #3227 – Description

    initial v4  
    1 Currently space is used as a delimiter for external input file. We should change it to standard delimiter i.e comma. But there might be issues with different locales e.g swedish.
     1Currently there seems to be 4 separate implementations for the csv files:
     21. input file externalInput.csv uses space as a delimiter
     32. input file for optimization uses space as a delimiter
     43. writing output results to the csv file is done using delimiter ","
     54. reading results from the results file uses comma as delimiter (libcsv.c)
     6
     7All these 4 different implementations should be based on libcsv.c which is the most configurable and one should be able to set the csv delimiter char and the quote char from command line.