Trim Function In Javascript

Following function trims an input string. The function not only removes leading
and trailing spaces but also any additional space in between the input string
function trim(inputString)
{
/*
Parameter inputString= String
Returns : Trimed String =String
Description : Following function trims an input string. The function not only
removes leading and trailing spaces but also any additional space in between
the input string

Writen By: Arshad Masood

*/
var interimString='';
var lastCharSpace=true;
var i;

for(i=0;i<inputString.length;i++)
{
if(inputString.charAt(i)==" ")
{
if(lastCharSpace==false)
{
interimString=interimString+inputString.charAt(i);
}
lastCharSpace=true;
}
else
{
interimString=interimString+inputString.charAt(i);
lastCharSpace=false;
}
}
//process for the last element
if(interimString.charAt(interimString.length-1)==" ")
{
interimString=interimString.substring(0,interimString.length-1);
}
return interimString;
}

This was first published in November 2000

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.