As you may have found out yourself already, when I was talking about replace()
proc I had in mind this type of replace:
var s = "This is a test"
s[5 .. 6] = "was"
echo s
For finding the start and end position you may use find proc searching for ',' or whatever is desired.
