The question says it all; JS doesn't seem to have a native trim() method.
|
|
according to this page the best all-around approach is
Of course if you are using jQuery , it will provide you with an optimized trim method. |
|||||||||||||
|
|
Well, as a lot of people always says, the trim function works pretty well, but if you don't want to use a whole framework just to perform a trim, it may be useful to take a look at its implementation. So here it is:
The main advantages I see in this implementation, comparing to other solution already proposed here are:
|
|||||
|
|
|
As a couple of others have already noted, it's usually best to do this sort of thing by using a third-party JS library. Not that trim() is a complicated function to build yourself, but there are so many functions that aren't native to JavaScript that you might need and end-up writing yourself, it soon becomes more cost-effective to use a library. Of course, another advantage of using a JS library is that the authors do the hard work of ensuring that the functions work across all the major browsers, so that you can code to a standard interface and forget about the irritating differences between Internet Explorer and all the other browsers. |
|||
|
|
|
A slightly tinier version of @Pat's.
|
||||
|
|
|
For ltrim, replace spaces anchored at the start of the string with nothing:
For rtrim, replace spaces anchored at the end of the string with nothing:
For trim:
These all use regex'es to do the actual work. |
||||
|
|
|
Why not just modify the String prototype? Why not steal the trim function from an open source library, like I did here with YUI? (Do you really need to load and entire framework for this simple taks?) Put them together and you get this:
|
|||
|
|
|
Use Ariel Flesler's fast trim function:
My solution, though, would be this (because the String object in Firefox 3.5 and above already has a
|
|||
|
|
|
I made a trim-function speed in mind. This function beats in a clear difference all of 24 competitors (of which many use regular expressions) and also native string.trim() of Chrome and Chromium(!) and performs as speedy as Safari's trim(). Test results are here: http://jsperf.com/mega-trim-test/7
The function trims characters " \n\r\t\f", but it's easy to add more whitespace-characters, eg. those that regexp uses as whitespaces (\s) with only a minor performance lost ( please see http://jsperf.com/mega-trim-test/8 ). Edit: The previous trim27() trims only the most common characters (" \n\r\t\f"), but to trim all possible whitespaces, I included below a new function mytrim():
Use it this way:
The above mytrim() does the following:
|
||||
|
|
|
Microsoft .NET also has String.trim function as a part of JavaScript Base Type Extensions. It could be used if you are coding ASP.NET application. |
|||
|
|
I use this.
|
|||
|
|
|
|
|||
|
|
|
The answer to so many JavaScript questions: jQuery
Which is far more sensible than "$", and far less verbose than typing "jQuery" every time. |
||||
|
|
I use this: Work with functions.
|
|||
|
|
|
You can use following ...
|
|||
|
|
|
This is probably not the fastest, and might violate what ".trim()" probably should really be, but I don't like RegExs (mainly because it takes so much time to figure out what they really mean/do) and I like having something that I know will work regardless of whether I have jQuery or not (not to mention the right version, since I tried $.trim(myVar) with jQuery 1.4.2 and it does not work), and will get rid of ALL extra spaces, not just at the end, rebuilding it like it should be:
|
|||
|
|

