js replace multiple
string.replace('find1', 'replace1').replace('find2', 'replace2');
js replace multiple
string.replace('find1', 'replace1').replace('find2', 'replace2');
replace many chracters js
// You can use regex to do it in only one replace
// Using the or: |
var str = '#this #is__ __#a test###__';
str.replace(/#|_/g,''); // result: "this is a test"
// Or using the character class
str.replace(/[#_]/g,''); // result: "this is a test"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us