v/vlib/encoding/csv
Tarcisio Gruppi 23dc85d94d
Making string index methods follow the same standard
All string index methods that end with `_opt` return `?int` with none as
the value when the substring is not found
and the index methods that do not end in `_opt` return `int` with -1 as
the returned value when the substring is not found
2022-03-17 09:27:11 -03:00
..
README.md
reader.v Making string index methods follow the same standard 2022-03-17 09:27:11 -03:00
reader_test.v csv: fix csv fields with double quotes (#10399) 2021-06-10 19:24:20 +03:00
writer.v docs, builtin, encoding.csv: update error implementations (#13440) 2022-02-12 11:54:10 +02:00
writer_test.v

README.md

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']