Javascript trim
1 2 // Removes leading and ending whitespaces, nbsps 3 function trim(str) { 4 return str.replace(/(^[\s\xA0]+|[\s\xA0]+$)/g, ''); 5 }
13474 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
1 2 // Removes leading and ending whitespaces, nbsps 3 function trim(str) { 4 return str.replace(/(^[\s\xA0]+|[\s\xA0]+$)/g, ''); 5 }