CsvArray Op
parse CSV files as array
Summary (oneliner)
<p>Let’s you open uploaded <a href="https://en.wikipedia.org/wiki/Comma-separated_values">CSV</a> (character-separated-values)-files, which can be used to store tabular data, e.g.</p> <pre><code>Year,Make,Model,Description,Price 1997,Ford,E350,"ac, abs, moon",3000.00 1999,Chevy,"Venture ""Extended Edition""","",4900.00 1999,Chevy,"Venture ""Extended Edition, Very Large""",,5000.00 1996,Jeep,Grand Cherokee,"MUST SELL! air, moon roof, loaded",4799.00 </code></pre> <p>If your CSV-file has a header-row, you have to manually ignore it (index 0), or just delete it from the file. The result will be a two-dimensional array containing the rows and individual row-values.</p>
- Ops.Json.CsvArray
- Core Op - Official cables op
- MIT
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Op Licence
Caniuse query
Example Patch CSV Example
INPUT PORTS
<p>The CSV-file you want to use in cables as an array</p>
OUTPUT PORTS
<p>The parsed two-dimensional array containing all the rows and columns from the CSV-file</p>
<p>The number of rows </p>