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. Use the icons below to share this tutorial with your friends.

tags cloud

javascript

popular searches