我需要替换此处定义的 unicode 字符
到目前为止我已经得到了这个,但它似乎删除了所有空间,包括标准空格键:
var str = "Hello this is a test of the site";
str= str.replace(/[ \u00A0\u1680\u180e\u2000-\u2009\u200a\u200b\u202f\u205f\u3000]/g,'')
结果 - Hellothisistestofthesite
我只想删除字符串中'test'和'of'之间的unicode字符U+2003。