CSV Activities
Version: 1.0.0 · ID: zoan-packages-csv · Author: Zoan Software
The CSV package reads and writes CSV (comma separated values) files using a DataTable. CSV is the most universal tabular data exchange format: almost any system exports and imports it. If you work with data from one source and need to deliver it to another, CSV is usually the bridge.
Delimitador y encabezados
Section titled “Delimitador y encabezados”- Delimiter: Although “CSV” stands for comma-separated, many files (especially in locales that use the comma as a decimal) use semicolon
;or tab. Adjust thedelimiterparameter according to your file. - Headers: By default the first row is treated as column names (
hasHeader = true).
Activities
Section titled “Activities”| Activity | Type | Output | What it does |
|---|---|---|---|
| Read CSV | read-csv | DataTable | Read a CSV to a DataTable |
| Write CSV | write-csv | string | Write a DataTable to a CSV |