Skip to content

Instantly share code, notes, and snippets.

@aGiftKit
Last active August 29, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aGiftKit/a7aff4b98a247eecff53 to your computer and use it in GitHub Desktop.
Save aGiftKit/a7aff4b98a247eecff53 to your computer and use it in GitHub Desktop.
Used to replace all occurrences of a string within another string.
function ReplaceAll(string, search, replacement) {
// http://stackoverflow.com/questions/1144783/replacing-all-occurrences-of-a-string-in-javascript
return string.split(search).join(replacement);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment