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

Capitalize //JavaScript Function (See related posts)



[UPDATED CODE AND HELP CAN BE FOUND HERE]


usage:

document.write(s = "jonas Raoni a SOARES silva", " => ", s.capitalize());


code:

//+ Jonas Raoni Soares Silva
//@ http://jsfromhell.com/string/capitalize [v1.0]

String.prototype.capitalize = function(){ //v1.0
    return this.replace(/\w+/g, function(a){
        return a.charAt(0).toUpperCase() + a.substr(1).toLowerCase();
    });
};

You need to create an account or log in to post comments to this site.


Click here to browse all 5137 code snippets

Related Posts