CSV Parse

Start & import

Parse CSV data into records

Inputs
file
Outputs
dataset

Overview

Reads a raw CSV/TXT file into a structured dataset — rows, named columns, and inferred types. Streams the file so multi-gigabyte CSVs parse without filling memory.

Input example

name,age
Alice,34
Bob,28

Output example

dataset (2 rows) — columns: name (text), age (number)

Fields

FieldDescription
Source filerequiredWhich variable to use as the file to parse.
Has headerWhen on, the first row is used as the column names.
DelimiterColumn separator (e.g. "," or ";"). Leave blank to auto-detect.
Output variable namerequiredName this node's result so downstream nodes can select it. Auto-suggested; edit freely.