Here you can find the source of capitalizingFirstLetterOfEveryWord()
String.prototype.capitalizingFirstLetterOfEveryWord = function () { return this.replace(/(?:^|\s)\S/g, function(m){ return m.toUpperCase(); }); }; // To use: str.capitalizingFirstLetterOfEveryWord() // explanation // w ww. j a v a2s . c om // ?: just doesn't create a capturing group // (^..) any character except // \s white space // \S anything except a white space // summary: the regrex grabs the beginning space and the first letter ( ?: ) is optional its used for optimization.
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.capitalize = jCube.String.capitalize = function () { return this.charAt(0).toUpperCase() + this.substring(1).replace( /\s[a-z]/g, function(s){ return s.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; };
String.prototype.ucFirst = function () { return this.charAt(0).toUpperCase() + this.slice(1); };