Skip to content

Instantly share code, notes, and snippets.

@ralucas
Created August 5, 2014 17:11
Show Gist options
  • Save ralucas/80b2f311d9550fa85d74 to your computer and use it in GitHub Desktop.
Save ralucas/80b2f311d9550fa85d74 to your computer and use it in GitHub Desktop.
Useful regexes
// Take out multiple spaces and replace with single space
// i.e. "And the dog went on a walk" becomes "And the dog went on a walk"
string = string.replace(/\s{2,}/g, ' ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment