how to replace all characters in a string javascript
const string = "a, b, c, d, e, f";
string.replace(/,/g, '');
console.log(string) //a b c d e f
how to replace all characters in a string javascript
const string = "a, b, c, d, e, f";
string.replace(/,/g, '');
console.log(string) //a b c d e f
how to replace all occurrences of a string in javascript
// Update: In the latest versions of most popular browsers,
// you can use replaceAll as shown here:
let result = "1 abc 2 abc 3".replaceAll("abc", "xyz");
// `result` is "1 xyz 2 xyz 3"
/*
For Node and compatibility with older/non-current browsers:
Note: Don't use the following solution in performance critical code.
As an alternative to regular expressions for a simple literal string,
you could use:
*/
str = "Test abc test test abc test...".split("abc").join("");
// ass a general pattern
// str.split(search).join(replacement)
replace all occurrences of a string in javascript
str = str.replace(/abc/g, '');
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