v/vlib/encoding/csv
Alexander Medvednikov 59ed4be49a all: update copyright year 2022-01-04 12:21:12 +03:00
..
README.md check-md: verify code example formatting (#7143) 2020-12-05 22:54:41 +01:00
reader.v all: update copyright year 2022-01-04 12:21:12 +03:00
reader_test.v csv: fix csv fields with double quotes (#10399) 2021-06-10 19:24:20 +03:00
writer.v all: update copyright year 2022-01-04 12:21:12 +03: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']