Skip to content

Instantly share code, notes, and snippets.

@hofiorg
Last active August 29, 2015 14:05
Show Gist options
  • Save hofiorg/15b4dc96856b6c57e663 to your computer and use it in GitHub Desktop.
Save hofiorg/15b4dc96856b6c57e663 to your computer and use it in GitHub Desktop.
javascript - replaceAll
function replaceAll(find, replace, str) {
return str.replace(new RegExp(escapeRegExp(find), 'g'), replace);
}
function escapeRegExp(string) {
return string.replace(/([.*+?^=!:${}()|\[\]\/\\])/g, "\\$1");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment