Ruby Title Case
'some string here'.gsub(/\b\w/){$&.upcase}
11388 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
'some string here'.gsub(/\b\w/){$&.upcase}
document.write(s = "jonas Raoni a SOARES silva", " => ", s.capitalize());
//+ 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(); }); };