1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/encoding/csv
2023-04-04 13:47:48 +03:00
..
reader_test.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
reader.v all: 2023 copyright 2023-03-28 22:55:57 +02:00
README.md check-md: verify code example formatting (#7143) 2020-12-05 22:54:41 +01:00
to_struct_arr.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
writer_test.v cgen: parallel cc for much faster compilation using all CPU cores 2022-10-01 10:04:06 +03:00
writer.v fmt: remove redundant parenthesis in the complex infix expr (#17873) 2023-04-04 13:47:48 +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']