I am struggling with removing values such as /u0082
and /u008b
from my string. Can someone help me with this?
var pattern = /\b/u00\b/g;
var newString = myString.replace(pattern,' ');
I attempted the code above, but unfortunately, it did not work and resulted in an Illegal token error message being displayed.