Nodejs String Capitalize capitalizeEachLetter()

Here you can find the source of capitalizeEachLetter()

Method Source Code

String.prototype.capitalizeEachLetter = function() {
    return this.toLowerCase()
        .split(' ')
        .map(function(word) {
            return word.capitalizeFirstLetter();
        })/*from   w  ww .  j  a v  a  2  s.  co m*/
        .join(' ');
};
String.prototype.capitalizeFirstLetter = function() {
    return this.charAt(0)
        .toUpperCase() + this.slice(1);
};

Related

  1. capitalize(lower)
    'use strict';
    String.prototype.capitalize = function(lower) {
        return (lower ? this.toLowerCase() : this).replace(
            /(?:^|\s)\S/g,
            function(a) { return a.toUpperCase(); });
    };
    
  2. capitalize(lower)
    String.prototype.capitalize = function(lower) {
        return (lower ? this.toLowerCase() : this).replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
    };
    
  3. capitalize(n)
    String.prototype.capitalize = function(n) {
      return this.charAt(n).toUpperCase() + this.slice(n + 1);
    String.prototype.format = function(n) {
      return this.charAt(n).toUpperCase() + this.slice(n + 1);
    
  4. capitalize(normalise)
    'use strict';
    String.prototype.capitalize = function(normalise) {
        return (normalise ? this.toLowerCase() : this).replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
    };
    
  5. capitalize(separator)
    String.prototype.capitalize = function(separator) {
      var capitalized = "";
      var split = this.split(separator||'.');
      split.forEach(function(part){
        capitalized += part.charAt(0).toUpperCase()+part.slice(1);
      });
      return capitalized;
    };
    
  6. capitalizeEachWord()
    String.prototype.capitalizeEachWord = function () {
        return this.replace(/\w\S*/g, function(txt) {
            return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
        });
    
  7. capitalizeFirst()
    String.prototype.capitalizeFirst = function() {
        return this.charAt(0).toUpperCase() + this.slice(1);
    };
    
  8. capitalizeFirst()
    String.prototype.capitalizeFirst = function(){
        return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase();
    };
    
  9. capitalizeFirst()
    String.prototype.capitalizeFirst = function()
      return ( this.charAt(0).toUpperCase() + this.slice(1) );
    };