mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fix csv test
This commit is contained in:
parent
7069cd6ab5
commit
30fc29fa6d
@ -124,16 +124,16 @@ fn (r mut Reader) read_record() ?[]string {
|
||||
// quoted
|
||||
else {
|
||||
line = line[1..]
|
||||
if i := line.index('"') {
|
||||
if i+1 == line.len {
|
||||
if j := line.index('"') {
|
||||
if j+1 == line.len {
|
||||
// last record
|
||||
fields << line[..i]
|
||||
fields << line[..j]
|
||||
break
|
||||
}
|
||||
next := line[i+1]
|
||||
next := line[j+1]
|
||||
if next == r.delimiter {
|
||||
fields << line[..i]
|
||||
line = line[i..]
|
||||
fields << line[..j]
|
||||
line = line[j..]
|
||||
continue
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user