Here you can find the source of capitalizej()
/*//from w ww . j av a 2 s. c o m String.capitalize() Return: Capitalized string Sample: "I am the best and the girls love me!".capitalize() == "I Am The Best And The Girls Love Me!" */ String.prototype.capitalize = jCube.String.capitalize = function () { return this.charAt(0).toUpperCase() + this.substring(1).replace( /\s[a-z]/g, function(s){ return s.toUpperCase(); }); }
String.prototype.capitalizeWords = function () { return $.map(this.split(" "), function (e) { e.capitalize(); }).join(" "); };
String.prototype.capitalizeWords = function() { var words = this.split(/\s+/), wordCount = words.length, i, newWords = []; for (i = 0; i < wordCount; i++) { newWords.push(words[i].capitalize()); return newWords.join(' '); ...
String.prototype.capitalize_all = function() { var words = []; this.split(' ').forEach(function(word) { words.push( word.charAt(0).toUpperCase() + word.slice(1) ); }); return words.join(" "); String.prototype.capitalize_first = function() { return this.charAt(0).toUpperCase() + this.slice(1); ...
String.prototype.capitalize = function capitaliseFirstLetter() { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.capitalize = function capitalize() { return this[0].toUpperCase() + this.slice(1); };
String.prototype.capitalizingFirstLetterOfEveryWord = function () { return this.replace(/(?:^|\s)\S/g, function(m){ return m.toUpperCase(); }); };
var ID_DELIMITER = '-'; function sanitizeString( input ) { return input.split( /\W/g )[1]; String.prototype.toCapitalCase = function( allCapsWordLength ) { if ( isNaN( parseInt( allCapsWordLength ) ) ) { allCapsWordLength = 3; var words = this.split(' '); ...
String.prototype.toCapitalizeCase = function () { return this.charAt(0).toUpperCase() + this.slice(1); };
String.prototype.ucFirst = function() { var str = this; if(str.length) { str = str.charAt(0).toUpperCase() + str.slice(1); return str; };