Trim Function in Javascript February 03, 2010 function trim (str) { if(!str || typeof str != ' string ') return null; return str.replace(/^[\s]+/,'').replace(/[\s]+$/,'').replace(/[\s]{2,}/,' '); } Read more