Answers for "replace fixed set of characters in string javascript"

3

javascript string change character at index

String.prototype.replaceAt=function(index, char) {
    var a = this.split("");
    a[index] = char;
    return a.join("");
}
Posted by: Guest on June-24-2020
6

str replace javascript all

str.replace(/abc/g, '');
Posted by: Guest on May-16-2020

Code answers related to "replace fixed set of characters in string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language