v/vlib/encoding/csv
Lukas Neubert ac2c3847af
all: update copyright to 2019-2021 (#8029)
2021-01-18 13:20:06 +01:00
..
README.md
reader.v all: update copyright to 2019-2021 (#8029) 2021-01-18 13:20:06 +01:00
reader_test.v
writer.v all: update copyright to 2019-2021 (#8029) 2021-01-18 13:20:06 +01:00
writer_test.v

README.md

Reader example

import encoding.csv

data := 'x,y\na,b,c\n'
mut parser := csv.new_reader(data)
// read each line
for {
	items := parser.read() or { break }
	println(items)
}

It prints:

['x', 'y']
['a', 'b', 'c']