I\'m reading text from a text file. The first string the text file has to read is \"Algood \", and note the space. In Notepad, it appears that there is a space in this strin
Use:
LDM_MSG.Replace(ChrW(8203), "")
Instead of:
LDM_MSG.Replace(Chr(63), "")
It solves the problem.