1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/encoding/csv
2022-07-17 10:54:36 +03:00
..
reader_test.v encoding.csv: handle bools (#15103) 2022-07-17 10:54:36 +03:00
reader.v encoding.csv: update reader.v (#14807) 2022-06-21 08:31:47 +03:00
README.md check-md: verify code example formatting (#7143) 2020-12-05 22:54:41 +01:00
to_struct_arr.v encoding.csv: handle bools (#15103) 2022-07-17 10:54:36 +03:00
writer_test.v csv: handle missing line ending 2020-04-21 00:02:55 +02:00
writer.v docs: document more builtin functions/methods (#14229) 2022-04-30 12:31:23 +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']