Hello I want to replace all the letters from bylgarian alphabet with empty string I've seen this link How to match Cyrillic characters with a regular expression but it doesn't work for me
Here is what I've tried
1. var newstr = strInput.replace(/[\p{IsCyrillic}]/gi, '');
doesn't work!
2. var newstr = strInput.replace(/[\p{Letter}]/gi, '');
also nothing thanks for help;