How do I trim a string in JavaScript?
|
See this:
Since new Browsers (IE9+) have
|
|||||||||||||||||||||
|
|
The trim from jQuery is convenient if you are already using that framework.
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? :) |
|||||||||||
|
|
There are a lot of implementations that can be used. The most obvious seems to be something like this:
|
|||||||||||||||||||
|
|
Although there are a bunch of correct answers above, it should be noted that the
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/ |
||||
|
|
|
Simple version here What is a general function for JavaScript trim?
|
|||
|
|
|
I know this question has been asked three years back.Now,
|
|||
|
|
If you are using JQuery use |
|||
|
|
|
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)
|
|||||
|
|
I have a lib that uses trim. so solved it by using the following code.
|
||||
|
|
|
Use the Native JavaScript Methods:
|
|||||||||||||
|
Shamelessly stolen from Matt duereg. |
||||
|
|
|
This only removes spaces; there are no regular expressions:
|
|||||||
|
|
Don't know what bugs can hide here, but I use this:
Or this, if text contain enters:
Another try:
|
||||
|
|
Note: adding . I have run some tests and it seems that the previous way is a bit faster than:
|
|||
|
|
|
mine uses a single regex to look for cases where trimming is necessary, and uses that regex's results to determine desired substring bounds:
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:
there's two performance bets I made in these impls:
|
||||
|
|
|
For IE9+ and other browsers
|
|||
|
|
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.
String.trim()also works fine out of the box in Node.js. – Brad Jul 5 '12 at 22:41String.trim(), the class method, does not exist in ES5/Node.js; instead,String.prototype.trim(), the instance method, exists. Usage:' foo '.trim(), notString.trim(' foo '). – frontendbeauty Oct 11 '12 at 23:38$.trim(str)is always available. – Sygmoral Jan 28 at 19:19