Javascript Trim
1 2 String.prototype.trim = function() { return this.replace(/^\s+|\s+$/, ''); };
DZone Snippets > Will_Rickards > string
12729 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Will Rickards http://willrickards.net/
1 2 String.prototype.trim = function() { return this.replace(/^\s+|\s+$/, ''); };