Skip to content

Instantly share code, notes, and snippets.

@pmgupte
Created September 12, 2014 08:36
Show Gist options
  • Save pmgupte/7ed5dc5553d380d180e3 to your computer and use it in GitHub Desktop.
Save pmgupte/7ed5dc5553d380d180e3 to your computer and use it in GitHub Desktop.
Replace multiple (2+) whitespaces with single space
string = string.replace(/\s+/g, ' ');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment