Answers for ".replace('/^https?:\/\//i') javascript"

31

javascript replace

var res = str.replace("find", "replace");
Posted by: Guest on October-21-2019
0

how to replace all the string in javascript when the string is javascript variable

function name(str,replaceWhat,replaceTo){
    var re = new RegExp(replaceWhat, 'g');
    return str.replace(re,replaceTo);
}
Posted by: Guest on September-23-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language