A Pen by stephanie frantz on CodePen.
Last active
September 21, 2019 17:16
-
-
Save thehandsomezebra/f449ef831fc1d727ea646c192e6db208 to your computer and use it in GitHub Desktop.
javascript-regex to remove spaces except leave spaces in between words
A Pen by stephanie frantz on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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