Below is a simple function to implement this.
function trim(str) { if (!str || typeof str != 'string' ) { return null ; } return str.replace(/^[s]+/, '' ).replace(/[s]+$/, '' ).replace(/[s]{ 2 ,}/, ' ' ); } |