Showing posts with label Trim Function in Javascript. Show all posts
Showing posts with label Trim Function in Javascript. Show all posts

Wednesday, February 3, 2010

Trim Function in Javascript

function trim(str)
{
if(!str || typeof str != 'string')
return null;

return str.replace(/^[\s]+/,'').replace(/[\s]+$/,'').replace(/[\s]{2,}/,' ');
}