Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save thehandsomezebra/f449ef831fc1d727ea646c192e6db208 to your computer and use it in GitHub Desktop.
Save thehandsomezebra/f449ef831fc1d727ea646c192e6db208 to your computer and use it in GitHub Desktop.
javascript-regex to remove spaces except leave spaces in between words
document.write(" this has a ton of nonsense spaces in here. this helps to fix it. ".replace(/\s{2,}/g,' ').trim());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment