

- Welcome to Geeksww.com
Removing Whitespaces from Beginning of a String (Left Trim), using Javascript
Use the Javascript code below:
// Pass the string as argument (value) to the function below. function LeftTrim( value ) { var re = /s*((S+s*)*)/; return value.replace(re, "$1"); }
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, php, gearman, linux, bison, java, ubuntu, mysql, mysql mysql, install mysql, mysql initialization, source code, tools, install cairo, laptop
Similar Tutorials:
- Sleep/Pause for specified number of seconds
- How to find if argument is numeric or not, using Javascript
- Trim whitespaces from both ends of a string, using Javascript
- Javascript: Encoding Values in XML Strings for AJAX / Web 2.0
- How to setup node.js/express.js, compass, bootstrap project
Tutorials in 'Web Development > Javascript' (more):
- Bundle, validate, compress javascript files
- Trim whitespaces from both ends of a string, using Javascript
- How to find if argument is numeric or not, using Javascript
- Javascript: Encoding Values in XML Strings for AJAX / Web 2.0
- How to execute a function at regular intervals using Javascript
Comments (write a comment):
0 comments so far. Be the first one to leave a comment on this article.