Nodejs String Title Case title_case()

Here you can find the source of title_case()

Method Source Code

String.prototype.title_case = function () {
  var words = this.split(' ');
  var word = '';
  //console.log(words);
  if (words.length > 1) {
    //console.log('hi');
    for (var i=0; i < words.length; i++) {
      if (words[i] != 'of' && words[i] != 'the' || i === 0){
        word = word.concat( words[i].charAt(0)
        .toUpperCase() + words[i].slice(1) + ' ');
      }//from   ww  w.  jav a 2  s. co m
      else {
        word = word.concat( words[i] + ' ');
      }
    }
    return word.trim();

  }
  else {
    return this.charAt(0).toUpperCase() + this.slice(1);
  }
};

Related

  1. titleCase()
    String.prototype.titleCase= function()
        return this.charAt(0).toUpperCase() + this.substr(1);
    
  2. titleCase(str)
    function titleCase(str) {
      var arr = str.split(" ");
      var combineArr = [];
      var resultArr = [];
      for(var i = 0; i<arr.length; i++){
        var upperArr = [];
        var lowerArr = [];  
        for(var j = 0; j < arr[i].length; j++){      
          if(j === 0){
    ...
    
  3. titleCase(str)
    function titleCase(str) {
      var arr = str.split(" ");
      var first;
      var ends = [];
      var temp;
      var arrFixed = [];
      for (i = 0; i < arr.length; i++){
        first = [];
        ends = [];
    ...
    
  4. titleCase(str)
    function titleCase(str) {
      var splitted = str.toLowerCase().split(' ');
      for (var i = 0; i < splitted.length; i++) {
        var holder = splitted[i];    
        var bigLetter = holder.charAt(0).toUpperCase();
        holder = holder.slice(1, holder.length);
        splitted[i] = bigLetter.concat(holder);
      str = splitted.join(' ');
    ...
    
  5. titleCase(string)
    function titleCase(str) {
        var newTitle = str.split(' ');
        var updateTitle = [];
        for (var st in newTitle) {
            updateTitle[st] = newTitle[st]
                .toLowerCase()
                .replaceAt(0, newTitle[st].charAt(0).toUpperCase());
        return updateTitle.join(' ');
    ...
    
  6. titlecase()
    String.prototype.titlecase = function () {
      const wordArray = this.split(' ')
      const restrictedWords = ['a', 'the', 'an', 'and']
      const newWordArray = wordArray.map(word => {
        const downcaseWord = word.toLowerCase()
        if(restrictedWords.includes(downcaseWord)) return downcaseWord
        return word.capitalize()
      })
      newWordArray[0] = newWordArray[0].capitalize()
    ...
    
  7. titleize()
    String.prototype.titleize = function(){
      if(this.length == 0) return this;
      return this[0].toUpperCase() + this.substr(1).toLowerCase();
    
  8. titleize()
    String.prototype.titleize = function() {
      var words = this.split(' ')
      var array = []
      for (var i=0; i<words.length; ++i) {
        array.push(words[i].charAt(0).toUpperCase() + words[i].toLowerCase().slice(1))
      return array.join(' ')
    
  9. titleize()
    String.prototype.titleize = function() {
      var res = [];
      var parts = this.split(/_| /);
      $.each(parts, function(index, part) {
        res.push(part.capitalize());
      });
      return res.join(" ");
    };