v/vlib/encoding/csv
2024-01-01 23:29:54 +02:00
..
csv_reader_random_access.v encoding.csv: add a sequential reader too (suitable for very large .csv files, it does not read everything at once) (#20140) 2023-12-11 00:57:08 +02:00
csv_reader_sequential.v encoding.csv: add a sequential reader too (suitable for very large .csv files, it does not read everything at once) (#20140) 2023-12-11 00:57:08 +02:00
csv_reader_test.v encoding.csv: add a sequential reader too (suitable for very large .csv files, it does not read everything at once) (#20140) 2023-12-11 00:57:08 +02:00
reader.v all: update copyright year (#20334) 2024-01-01 23:29:54 +02:00
reader_test.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
README.md check-md: verify code example formatting (#7143) 2020-12-05 22:54:41 +01:00
README_csv_reader.md encoding.csv: add a sequential reader too (suitable for very large .csv files, it does not read everything at once) (#20140) 2023-12-11 00:57:08 +02:00
to_struct_arr.v all: replace generic <> with [] - part 2 (#16536) 2022-11-26 18:23:26 +02:00
writer.v all: update copyright year (#20334) 2024-01-01 23:29:54 +02:00
writer_test.v cgen: parallel cc for much faster compilation using all CPU cores 2022-10-01 10:04:06 +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']