CSV configuration parameters
The CSV ("Comma Separated Value") file format is often used to exchange data between disparate applications. The file format, as it is used in Microsoft Excel, has become a pseudo standard throughout the industry, even among non-Microsoft platforms.
Some application features import or export data in CSV (Comma Separated Value) like results in the search view and user lists in administration, among others. The format of the output CSV file can be configured to your needs with several parameters.
Field / Property | Type | Description |
---|---|---|
csv.format.delimiter | String |
Set the delimiter used between columns. By default the character used is ";". |
csv.format.ignore.empty.lines |
Boolean |
Set if empty lines must be processed or not. By default the value is false. |
csv.format.quote.character |
String |
Set the quote character used to enclose column values. By default it is set to the " character. |
csv.format.skip_header |
Boolean |
Set if the first row contains column names and must not be processed as values or not. By default it is set to true. |
csv.format.comment.indicator |
String |
Set the character used to indicate the beginning of a comment. By default it is set to #. |