Character looks like ASCII 63 but isn't so I can't remove it

后端 未结 3 1457
情话喂你
情话喂你 2021-01-19 00:45

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

3条回答
  •  醉梦人生
    2021-01-19 01:14

    Use:

    LDM_MSG.Replace(ChrW(8203), "") 
    

    Instead of:

    LDM_MSG.Replace(Chr(63), "")
    

    It solves the problem.

提交回复
热议问题