1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/encoding/csv
2022-04-15 18:25:45 +03:00
..
reader_test.v encoding.csv: allow passing a custom delimiter to the new_reader function (#13910) 2022-04-03 19:13:43 +03:00
reader.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +03:00
README.md check-md: verify code example formatting (#7143) 2020-12-05 22:54:41 +01:00
writer_test.v csv: handle missing line ending 2020-04-21 00:02:55 +02:00
writer.v all: ~500 more byte=>u8 2022-04-15 18:25:45 +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']