Never been to DZone Snippets before?

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

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Javascript trim

   1  
   2  // Removes leading and ending whitespaces, nbsps
   3  function trim(str) {
   4      return str.replace(/(^[\s\xA0]+|[\s\xA0]+$)/g, '');
   5  }
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS