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






Comments
Steven Levithan replied on Wed, 2008/01/30 - 1:58am