CSV line writer
Generate a CSV file on which you can append multiple lines.
Example
# Example:
Input 1:
- CSV row: "A" -> "Apple" and "B" -> "30gr"
Input 2:
- CSV row: "A" -> "Ham" and "B" -> "12kg"
Output:
+--------+--------+
| A | B |
+--------+--------+
| Name | Weight |
+--------+--------+
| Apple | 30gr |
| Ham | 12kg |
+--------+--------+
Parameters
Delimiter
Which delimiter to use (default ",")
Quote mode
Which quoting mode to use: Always / Necessary / Non Numeric / Never
Headers
Add an header line with the configured labels ('A' -> 'Name' and 'B' -> 'Weight' in example)
Input
CSV row (multiple)—REQUIRED
Which csv cell to add to the current row.