1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/encoding/csv
2022-09-01 21:23:18 +03:00
..
reader_test.v encoding.csv: handle bools (#15103) 2022-07-17 10:54:36 +03:00
reader.v encoding.csv: re-encapsulate fields in Writer/Reader (fix #15558) (#15570) 2022-08-28 11:13:43 +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 encoding.csv: re-encapsulate fields in Writer/Reader (fix #15558) (#15570) 2022-08-28 11:13:43 +03:00
writer.v csv: minor cleanup in writer.v (#15633) 2022-09-01 21:23:18 +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']