/ Published in: JavaScript
URL: http://www.topcat.hypermart.net/index.html
small handy snippet to single space a string in javascript
Expand |
Embed | Plain Text
// single space a string in javascript - Topcat Software LLC - 2010 // http://www.topcat.hypermart.net/index.html // before: str = " when harry met sally " // after: str = "when harry met sally" str.replace(/^\s+|\s+$/g,'').replace(/\s\s+/g,' ')
You need to login to post a comment.
