Given a string like:
"The dog has a long tail, and it is RED!"
What kind of JQUERY, JavaScript magic can be used to keep spaces to only 1 max?
Goal:
"The dog has a long tail, and it is RED!"
thanks
|
Given a string like: "The dog has a long tail, and it is RED!" What kind of JQUERY, JavaScript magic can be used to keep spaces to only 1 max? Goal: "The dog has a long tail, and it is RED!" thanks |
||||
|
Just replace
|
|||||||||||||||||
|
EDIT: If you wish to replace all kind of whitespace characters the most efficient way would be like that:
|
|||||||||||||
|
|
Since you seem to be interested in performance, I profiled these with firebug. Here are the results I got:
This is on Firefox, running 100k string replacements. I encourage you to do your own profiling tests with firebug, if you think performance is an issue. Humans are notoriously bad at predicting where the bottlenecks in their programs lie. (Also, note that IE 8's developer toolbar also has a profiler built in -- it might be worth checking what the performance is like in IE.) |
|||||||
|
|
This is one solution, though it will target all space characters:
Edit: This is probably better since it targets a space followed by 1 or more spaces:
Alternative method:
I didn't use I didn't deeply test any of these so lmk if there are bugs. Also, if you're going to do string replacement remember to re-assign the variable/property to its own replacement, eg:
Using jQuery.prototype.text:
|
|||||||
|
|
More robust: function trim(word)
{
word = word.replace(/[^\x21-\x7E]+/g, ' '); // change non-printing chars to spaces
return word.replace(/^\s+|\s+$/g, ''); // remove leading/trailing spaces
}
|
||||
|
|
Or if you also want to replace tabs:
|
|||||
|
|
Here is an alternate solution if you do not want to use replace (replace spaces in a string without using replace javascript)
|
|||
|
|
|
I have this method, I call it the Derp method for lack of a better name.
|
|||
|
|
I suggest
for just spaces
for turning multiple returns into a single return also. |
|||
|
|
str.replace(/ +(?= )/g,'');you're not replacing anything you don't have to. – Evan Carroll Dec 30 '09 at 17:46