Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I trim a string in JavaScript?

share|improve this question
146  
It's worth mentioning two years after this question was asked that String.trim() was added natively in JavaScript 1.8.1 / ECMAScript 5, supported in: Firefox 3.5+, Chrome/Safari 5+, IE9+ (in Standards mode only!) see scunliffe's answer: stackoverflow.com/a/8522376/8432 – wweicker Jan 18 '12 at 18:39
19  
String.trim() also works fine out of the box in Node.js. – Brad Jul 5 '12 at 22:41
16  
To nitpick: String.trim(), the class method, does not exist in ES5/Node.js; instead, String.prototype.trim(), the instance method, exists. Usage: ' foo '.trim(), not String.trim(' foo '). – frontendbeauty Oct 11 '12 at 23:38
6  
OMG, it's 2013 and IE9 in compat mode has no trim() method on String! – dbrin Jan 9 at 23:25
21  
Worth noting that in jQuery, $.trim(str) is always available. – Sygmoral Jan 28 at 19:19
show 1 more comment

16 Answers

up vote 331 down vote accepted

See this:

String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g, '');};

String.prototype.ltrim=function(){return this.replace(/^\s+/,'');};

String.prototype.rtrim=function(){return this.replace(/\s+$/,'');};

String.prototype.fulltrim=function(){return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,'').replace(/\s+/g,' ');};

Since new Browsers (IE9+) have trim() already implemented, you should only implement trim() if it is not already available on the Prototype-Object (overriding it is a huge performance hit). This is generally recommended when extending Native Objects! Note that the added property is enumerable unless you use ES5 Object.defineProperty!

if (!String.prototype.trim) {
   //code for trim
}
share|improve this answer
59  
Just want to point out that now (a long time after the time of the question) trim() is part of the native String methods. You can just do " abc ".trim() to get "abc" – Dave Dec 2 '11 at 2:22
43  
trim() is not supported in IE7, which is still a reality for a lot of devs, so above solution is very relevant. – Seb Nilsson Feb 21 '12 at 10:53
7  
@SebNilsson It's not supported in IE8 either, nonetheless I edited the answer to take the support of the newer browsers into account. – Christoph May 30 '12 at 8:04
6  
Can you explain why you used '/^\s\s*/' instead of '/^\s+/' ? – Andrew Theken Jul 5 '12 at 15:45
7  
Worth noting that in jQuery, $.trim(str) is always available. – Sygmoral Jan 28 at 19:21
show 3 more comments

The trim from jQuery is convenient if you are already using that framework.

$.trim('  your string   ');

I tend to use jQuery often, so trimming strings with it is natural for me. But it's possible that there is backlash against jQuery out there? :)

share|improve this answer
46  
Thanks for the feedback, but that's not my point, so I'll need to rephrase my post. My thinking is really is that if jQuery has already been included, then when why not use it? – barneytron Jan 31 '09 at 15:44
nice one............................. – saidesh kilaru Feb 26 at 11:19
3  
jQuery is NOT a framework. This is still a library! – Sk8erPeter May 7 at 1:53

There are a lot of implementations that can be used. The most obvious seems to be something like this:

String.prototype.trim = function() {
    return this.replace(/^\s+|\s+$/g, "");
};

" foo bar ".trim();  // "foo bar"
share|improve this answer
Important info about the prototype property w3schools.com/jsref/jsref_prototype_math.asp (this is not the Prototype framework) – Asaf Apr 29 '11 at 8:04
46  
@Asaf: W3Schools is not a good reference. – Gumbo Apr 29 '11 at 11:12
11  
exaggeration of ubergeeks, after reading the page it seems that they are just against simplified information and quick reference. – Asaf Apr 30 '11 at 10:10
11  
@Asaf: That may be your opinion. However, I think it’s more important to provide correct information. And W3Schools seems to be wrong in too many cases. – Gumbo Apr 30 '11 at 10:26
12  
Been burned by W3Schools one too many times, now avoiding them like the plague. – romkyns Sep 15 '11 at 14:16
show 1 more comment

Although there are a bunch of correct answers above, it should be noted that the String object in JavaScript has a native .trim() method as of ECMAScript 5. Thus ideally any attempt to prototype the trim method should really check to see if it already exists first.

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

Added natively in: JavaScript 1.8.1 / ECMAScript 5

Thus supported in:

Firefox: 3.5+

Safari: 5+

Internet Explorer: IE9+ (in Standards mode only!) http://blogs.msdn.com/b/ie/archive/2010/06/25/enhanced-scripting-in-ie9-ecmascript-5-support-and-more.aspx

Chrome: 5+

Opera: 10.5+

ECMAScript 5 Support Table: http://kangax.github.com/es5-compat-table/

share|improve this answer

Simple version here What is a general function for JavaScript trim?

function trim(str) {
        return str.replace(/^\s+|\s+$/g,"");
}
share|improve this answer

I know this question has been asked three years back.Now,String.trim() was added natively in JavaScript.For an instance, you can trim directly as following,

document.getElementById("id").value.trim();
share|improve this answer
This wont work in ie versions, use the jQuery methd $.trim(str) if you can – Ben Taliadoros Apr 18 at 10:15

If you are using JQuery use jQuery.trim() function. For example, if( jQuery.trim(StringVariable) == '')

share|improve this answer

Flagrant Badassery has 11 different trims with benchmark information:

http://blog.stevenlevithan.com/archives/faster-trim-javascript

Non-surprisingly regexp-based are slower than traditional loop.


Here is my personal one. This code is old! I wrote it for JavaScript1.1 and Netscape 3 and it has been only slightly updated since. (Original used String.charAt)

/**
 *  Trim string. Actually trims all control characters.
 *  Ignores fancy Unicode spaces. Forces to string.
 */
function trim(str) {
    str = str.toString();
    var begin = 0;
    var end = str.length - 1;
    while (begin <= end && str.charCodeAt(begin) < 33) { ++begin; }
    while (end > begin && str.charCodeAt(end) < 33) { --end; }
    return str.substr(begin, end - begin + 1);
}
share|improve this answer
1  
There are now 12. thanks to feedback. – Ross Apr 16 '12 at 7:32

I have a lib that uses trim. so solved it by using the following code.

String.prototype.trim = String.prototype.trim || function(){return jQuery.trim(this);};
share|improve this answer

Use the Native JavaScript Methods: String.trimLeft(), String.trimRight(), and String.trim().


String.trim() is supported in IE9+ and all other major browsers:

'  Hello  '.trim()  //-> 'Hello'


String.trimLeft() and String.trimRight() are non-standard, but are supported in all major browsers except IE

'  Hello  '.trimLeft()   //-> 'Hello  '
'  Hello  '.trimRight()  //-> '  Hello'


IE support is easy with a polyfill however:

if (!''.trimLeft) {
    String.prototype.trimLeft = function() {
        return this.replace(/^\s+/,'');
    };
    String.prototype.trimRight = function() {
        return this.replace(/\s+$/,'');
    };
    if (!''.trim) {
        String.prototype.trim = function() {
            return this.replace(/^\s+|\s+$/g, '');
        };
    }
}
share|improve this answer
String.trimLeft() and String.trimRight() are not part of any ECMAScript standard. Plus, your answer is identical to the accepted answer for this question. – Brad Feb 23 at 5:34
@Brad True, but they still have wide browser support. And the polyfill takes care of any inconsistencies. – Web_Designer Feb 23 at 5:37
You should consider deleting your answer. It doesn't add anything that hasn't already been covered 5x over by other answers already here. – Brad Feb 23 at 5:38
1  
@Brad I haven't seen anyone mention trimLeft or trimRight. – Web_Designer Feb 23 at 5:40
show 5 more comments
String.prototype.trim = String.prototype.trim || function () {
    return this.replace(/^\s+|\s+$/g, "");
};

String.prototype.ltrim = String.prototype.ltrim || function () {
    return this.replace(/^\s+/, "");
};

String.prototype.rtrim = String.prototype.rtrim || function () {
    return this.replace(/\s+$/, "");
};

String.prototype.fulltrim = String.prototype.fulltrim || function () {
    return this.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g, "").replace(/\s+/g, " ");
};

Shamelessly stolen from Matt duereg.

share|improve this answer

This only removes spaces; there are no regular expressions:

function trim(str){
    return str.split(' ').join();
}
share|improve this answer
Just FYI, when posting a code block, precede each line with 4 spaces or the page won't know how to format it correctly. – RustyTheBoyRobot Jun 21 '12 at 0:00
4  
This removes all spaces though, not only leading and trailing ones. – Felix Kling Jul 27 '12 at 16:22

Don't know what bugs can hide here, but I use this:

var some_string_with_extra_spaces="   goes here    "
console.log(some_string_with_extra_spaces.match(/\S.*\S|\S/)[0])

Or this, if text contain enters:

console.log(some_string_with_extra_spaces.match(/\S[\s\S]*\S|\S/)[0])

Another try:

console.log(some_string_with_extra_spaces.match(/^\s*(.*?)\s*$/)[1])
share|improve this answer
function trim(str) {
    return str.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
}

Note: adding .replace(/\s+/g,' ') would also replace double spaces

.

I have run some tests and it seems that the previous way is a bit faster than:

function slowerTrim(str) {
        return str.replace(/^\s+|\s+$/g, '');
}
share|improve this answer

mine uses a single regex to look for cases where trimming is necessary, and uses that regex's results to determine desired substring bounds:

var illmatch= /^(\s*)(?:.*?)(\s*)$/
function strip(me){
    var match= illmatch.exec(me)
    if(match && (match[1].length || match[2].length)){
        me= me.substring(match[1].length, p.length-match[2].length)
    }
    return me
}

the one design decision that went into this was using a substring to perform the final capture. s/\?:// (make the middle term capturing) and and the replacement fragment becomes:

    if(match && (match[1].length || match[3].length)){
        me= match[2]
    }

there's two performance bets I made in these impls:

  1. does the substring implementation copy the original string's data? if so, in the first, when a string needs to be trimmed there is a double traversal, first in the regex (which may, hopefully be partial), and second in the substring extraction. hopefully a substring implementation only references the original string, so operations like substring can be nearly free. cross fingers

  2. how good is the capture in the regex impl? the middle term, the output value, could potentially be very long. i wasn't ready to bank that all regex impls' capturing wouldn't balk at a couple hundred KB input capture, but i also did not test (too many runtimes, sorry!). the second ALWAYS runs a capture; if your engine can do this without taking a hit, perhaps using some of the above string-roping-techniques, for sure USE IT!

share|improve this answer

For IE9+ and other browsers

function trim(text) {
    return (text == null) ? '' : ''.trim.call(text);
}
share|improve this answer

protected by Brad Feb 23 at 5:39

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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