Removing Ending Whitespaces from a String (Right Trim), using Javascript

 
Use the code below:
// Pass the string as argument (value) to the function below.
function RightTrim( 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

linux, php, 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