JavaScript 中的 replaceAll

JavaScript 中的 replaceAll

string.replace(new RegExp(oldString,"gm"),newString))

正则表达式中:g=global,m=multiLine 


String.prototype.replaceAll = function(AFindText,ARepText){
  return this.replace(new RegExp(AFindText,"gm"),ARepText)
}

你可能感兴趣的:(JavaScript,正则表达式,prototype)