Removing Whitespaces from Beginning of a String (Left Trim), using Javascript

 
Use the 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");
}

Please feel free to use the comments form below if you have any questions or need more explanation on anything.

Tags

javascript,

Popular Searches

php, linux, mysql, ubuntu, mysql mysql, tools, install mysql, gearman, source code, java

more>>

Comments (write a comment):

0 comments so far. Be the first one to leave a comment on this article.

 

Comment