I’d like to replace all _ – . from a String with a white space. This is what I’ve came up with :
mystring.replace(/_|-|\\. /g, ' ');
The dot is not being removed but _ and – are. How to remove the dot as well ??
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
"aaa_aaa-aaa.aaaa".replace(/_|-|\./g, ' ');works for me. Note I used a single escape
\and got rid of your blank space before the closing/.