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?
|
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:
Any ideas?
| |||
|
feedback
|
|
Steven Levithan analyzed many different implementation of His recommendation is:
for "general-purpose implementation which is fast cross-browser", and
"if you want to handle long strings exceptionally fast in all browsers". References | |||||||||
feedback
|
|
As @ChaosPandion mentioned, the
Then you can simply:
| |||||||||
feedback
|
|
Here, this should do all that you need
| ||||
|
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.
| |||||||
feedback
|
|
If using jQuery is an option:
or simply:
| |||
|
feedback
|
|
Here is some methods I've been used in the past to trim strings in js:
| |||||
feedback
|
|
ECMAScript 5 supports | ||||
|
feedback
|