1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/encoding/csv
2022-01-04 12:21:12 +03:00
..
reader_test.v csv: fix csv fields with double quotes (#10399) 2021-06-10 19:24:20 +03:00
reader.v all: update copyright year 2022-01-04 12:21:12 +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: update copyright year 2022-01-04 12:21:12 +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']