How to replace the last character in a string with VB6? I have syntax
Replace$(expression, find, replacewith[, start[, count[, compare]]])
but I can not find the correct use of this. I have something like
iLength = Len(sBuild) sBuild = Replace(sBuild, "^", "ΓΊ", iLength, 1)
This does not work, but I can not find examples on the Internet.
Thanks!
source share