How to remove \u0007 character from string?

\u0007 looks like the bell char in unicode
give a try to do a replace with Yourstring.Replace(chr(7),“”)

grafik

3 Likes