Skip to main content

CSV Connector

CSV Build and parse CSV files to and from JavaScript arrays

Actions

Generate CSV From Array

Generates CSV data from an array of objects

InputCommentsDefault
Input ArrayThis should be an array of un-nested objects
[
{
"Column 1": "foo",
"Column 2": "bar"
},
{
"Column 1": "abc",
"Column 2": "def"
}
]
DelimiterProvide a string value containing the character the file is delimited on.,
Include Header?true

Generate (Deprecated)

Generates a CSV file from an array of objects

InputCommentsDefault
DataFor each list item, provide a list of strings that represent a row in the file.
DelimiterProvide a string value containing the character the file is delimited on.,

Parse

Parse CSV data into an array of rows

InputCommentsDefault
CSV DataProvide a string containing one or more rows of comma-seperated data
DelimiterProvide a string value containing the character the file is delimited on.,