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:

committed by
GitHub

parent
b10d79c4d9
commit
332f3a924c
@ -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
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user