How do I replace the last character in a string with VB6? I’ve got the syntax
Replace$(expression, find, replacewith[, start[, count[, compare]]])
but I can’t seem to find the right use of it. I’ve got something like
iLength = Len(sBuild)
sBuild = Replace(sBuild, "^", "ú", iLength, 1)
This isn’t working but I can’t seem to find any examples online.
Thanks!
Try
sBuild = Left$(sBuild, iLength - 1) & "ú"