v/vlib/encoding/csv
spaceface d63b7bc35a
all: update repo to use the new error handling syntax (#8950)
2021-02-28 23:20:21 +03:00
..
README.md check-md: verify code example formatting (#7143) 2020-12-05 22:54:41 +01:00
reader.v all: update repo to use the new error handling syntax (#8950) 2021-02-28 23:20:21 +03:00
reader_test.v csv: cleanup reader_test.v 2020-07-22 17:26:26 +03:00
writer.v strings: make builder implement io.Writer (#8914) 2021-02-23 09:42:48 +02:00
writer_test.v csv: handle missing line ending 2020-04-21 00:02:55 +02:00

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']