v/vlib/encoding/csv
2023-11-15 16:16:01 +11:00
..
reader.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
reader_test.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
README.md
to_struct_arr.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
writer.v all: update attributes to use new syntax 2023-11-15 16:16:01 +11:00
writer_test.v cgen: parallel cc for much faster compilation using all CPU cores 2022-10-01 10:04:06 +03:00

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