

- Welcome to Geeksww.com
Trim whitespaces from both ends of a string, using Javascript
The code below uses the two functions used here and here. Read the tutorials mentioned previously before using the function below:
// Removes leading and ending whitespaces // The string to be processed as an argument (value) to the function below function trim( value ) { return LeftTrim(RightTrim(value)); }
If you have JQuery enabled in your code, then you can also use Jquery's trim() function to trim whitespaces from both ends of a string.
var trimmed_str = $.trim( str_with_whitespaces );
Did this tutorial help a little? How about buy me a cup of coffee?
Please feel free to use the comments form below if you have any questions or need more explanation on anything. I recommend thoroughy testing on a production-like test system first before moving to production.
tags cloud
popular searches
free download for mysql database server 5.1.5, bison, gearman, install cairo, php, java, install mysql, laptop, linux, mysql, source code, mysql initialization, mysql mysql, tools, ubuntu
Similar Tutorials:
- Bundle, validate, compress javascript files
- Removing Whitespaces from Beginning of a String (Left Trim), using Javascript
- How to find if argument is numeric or not, using Javascript
- Removing Ending Whitespaces from a String (Right Trim), using Javascript
- How to execute a function at regular intervals using Javascript
Tutorials in 'Web Development > Javascript' (more):
- Bundle, validate, compress javascript files
- How to execute a function at regular intervals using Javascript
- Go to Top of the Page Using Javascript
- Sleep/Pause for specified number of seconds
- Removing Whitespaces from Beginning of a String (Left Trim), using Javascript
Comments (write a comment):
0 comments so far. Be the first one to leave a comment on this article.