Handbook
Glossary
read-csv ( -- rows )
Comma-separated-values parsing and writing
Prev:
with-delimiter ( ch quot -- )
Next:
read-row ( -- row )
Vocabulary
csv
Inputs
None
Outputs
rows
an array of arrays of fields
Word description
Parses a csv stream into an array of row arrays.
Definition
USING:
io
namespaces
;
IN:
csv
:
read-csv
( -- rows )
input-stream
get
stream-read-csv
;
inline