1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builtin: consume matched string length in string.replace_each (#6349)

This commit is contained in:
Oghogho Odemwingie
2020-09-12 01:31:06 +01:00
committed by GitHub
parent b10d79c4d9
commit 332f3a924c
3 changed files with 8 additions and 3 deletions

View File

@ -292,7 +292,7 @@ pub fn (s string) replace_each(vals []string) string {
idx:idx
val_idx:rep_i
}
idx++
idx += rep.len
new_len += with.len - rep.len
}
}