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 |
||
|---|---|---|
| .. | ||
| README.md | ||
| reader.v | ||
| reader_test.v | ||
| writer.v | ||
| 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']