Trying to find a way to trim spaces from the start and end of the string. I was using this, but it dont seem to be working:

title = title.replace(/(^[\s]+|[\s]+$)/g, '');

Any ideas?

link|improve this question

22% accept rate
feedback

7 Answers

Steven Levithan analyzed many different implementation of trim in Javascript in terms of performance.

His recommendation is:

function trim1 (str) {
    return str.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}

for "general-purpose implementation which is fast cross-browser", and

function trim11 (str) {
    str = str.replace(/^\s+/, '');
    for (var i = str.length - 1; i >= 0; i--) {
        if (/\S/.test(str.charAt(i))) {
            str = str.substring(0, i + 1);
            break;
        }
    }
    return str;
}

"if you want to handle long strings exceptionally fast in all browsers".

References

link|improve this answer
great post, great code! – Marco Demaio Jun 8 '10 at 20:35
5  
The new Safari (5), Chrome(5), Firefox(3.6) and Opera (10.5) all support a native String trim method. That being the case, I'd assign a method to String.prototype, if it does not exist, rather than a new global function. – kennebec Jun 8 '10 at 20:53
String.prototype.trim = String.prototype.trim || function trim() { return this.replace(/^\s\s*/, '').replace(/\s\s*$/, ''); }; – kojiro Oct 27 '11 at 18:48
feedback

As @ChaosPandion mentioned, the String.prototype.trim method has been introduced into the ECMAScript 5th Edition Specification, some implementations already include this method, so the best way is to detect the native implementation and declare it only if it's not available:

if (typeof String.prototype.trim != 'function') { // detect native implementation
  String.prototype.trim = function () {
    return this.replace(/^\s+/, '').replace(/\s+$/, '');
  };
}

Then you can simply:

title = title.trim();
link|improve this answer
IE9 had better get compliant... – ChaosPandion Jun 8 '10 at 21:17
I'm always a little bemused by this meme of checking if the property is a function. If it's not a function is the right behavior really to overwrite it? Perhaps you should throw an error in that case. – kojiro Oct 27 '11 at 18:49
@kojiro, well, maybe throwing an error would be good, but I see it like this: I'm trying to make an spec-compliant shim, and if String.prototype.trim is not a function, it is not the String.prototype.trim method described on the ECMAScript 5th Edition Specification, the spec guarantees that trim is a function object on ES5 environments. – CMS Oct 30 '11 at 20:50
throw { name: "UnlikelyPolyfillException", message: "Did someone really write a property on the String prototype named 'trim' that isn't a ECMA 5 compatible shim? Come on now, that's crazy." } – kojiro Oct 30 '11 at 22:01
feedback

Here, this should do all that you need

function doSomething(input) {
    return input
              .replace(/^\s\s*/, '')     // Remove Preceding white space
              .replace(/\s\s*$/, '')     // Remove Trailing white space
              .replace(/([\s]+)/g, '-'); // Replace remaining white space with dashes
}

alert(doSomething("  something with  some       whitespace   "));
link|improve this answer
\s\s* seems redundant, since there is \s+, but it's a little bit faster – Chad Jun 8 '10 at 19:46
feedback

Here is my current code, the 2nd line works if I comment the 3rd line, but don't work if I leave it how it is.

var page_title = $(this).val().replace(/[^a-zA-Z0-9\s]/g, '');
page_title = page_title.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
page_title = page_title.replace(/([\s]+)/g, '-');
link|improve this answer
remove 2nd & third line, and use the code from polygenelubricants, page_title = trim1(page_title); – ant Jun 8 '10 at 20:08
so ultimately you're trying to clean this string to be trimmed, alpha-numeric, and dashes instead of spaces as separators? – Chad Jun 8 '10 at 20:13
@chad yes. To create slug URLs on the fly so users can see what their URL will look like. Similar to how wordpress does it when creating new blog posts. – James Jeffery Jun 8 '10 at 20:20
feedback

If using jQuery is an option:

/**
 * Trim the site input[type=text] fields globally by removing any whitespace from the
 * beginning and end of a string on input .blur()
 */
$('input[type=text]').blur(function(){
    $(this).val($.trim($(this).val()));
});

or simply:

$.trim(string);
link|improve this answer
feedback

Here is some methods I've been used in the past to trim strings in js:

String.prototype.ltrim = function( chars ) {
    chars = chars || "\\s*";
    return this.replace( new RegExp("^[" + chars + "]+", "g"), "" );
}

String.prototype.rtrim = function( chars ) {
    chars = chars || "\\s*";
    return this.replace( new RegExp("[" + chars + "]+$", "g"), "" );
}
String.prototype.trim = function( chars ) {
    return this.rtrim(chars).ltrim(chars);
}
link|improve this answer
The RegExp ^[\s*]+ matches * at the beginning of the string, so that your function trims "*** Foo" to "Foo". – Ferdinand Beyer Jun 8 '10 at 20:04
probably :) wonder why no one have complained... It was a long time ago I wrote that code, and it's used in en.wikipedia.org/wiki/Wikipedia:Twinkle . off source now that you point it out it's obvious. – azatoth Jun 8 '10 at 20:11
feedback

ECMAScript 5 supports trim and this has been implemented in Firefox.

trim - MDC

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.