I want to replace unicode characters with space. For example, I have this string
This was a very successful meeting.\u000b\u000bWe agreed on several topics:\u000b New strategy\u000b Development ressources\u000b Project optimization
and I want to replace \u000b with space.
Currently, I am doing it this way i.e.
var str = "This was a very successful meeting.\u000b\u000bWe agreed on several topics:\u000b";
var replaceStr = str.replace(/[\u000b\u00A0\u1680\u180e\u2000-\u2009\u200a\u200b\u202f\u205f\u3000\u000b-]/g, ' ');
but it's not replacing these unicode characters with space.
Thank you
replaceStrinstead ofstr?