up vote 14 down vote favorite
3
share [g+] share [fb]

Is there a simple way to convert a string to proper case? E.g. john smith becomes John Smith. I'm not looking for something complicated like John Resig's solution, just (hopefully) some kind of one- or two-liner.

link|improve this question

feedback

9 Answers

up vote 21 down vote accepted

Try this:

function toTitleCase(str)
{
    return str.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
}

Credit: http://efficienttips.com/convert-string-title-case-javascript/ (albeit google cache for some reason)

link|improve this answer
feedback

A slightly more elegant way, adapting Greg Dean's function:

String.prototype.toProperCase = function () {
    return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
};

Call it like:

"pascal".toProperCase();
link|improve this answer
feedback

Try to apply the text-transform CSS style to your controls

link|improve this answer
Not using it for that. – MDCore Jun 21 '10 at 13:44
1  
-1. This css works, but doesn't work as most people expect because if the text starts out as all caps, there is no effect. webmasterworld.com/forum83/7506.htm – Lee Whitney Aug 23 '11 at 17:37
feedback
var toMatch = "john w. smith";
var result = toMatch.replace(/(\w)(\w*)/g, function (_, i, r) {
      return i.toUpperCase() + (r != null ? r : "");
    }
)

Seems to work... Tested with the above, "the quick-brown, fox? /jumps/ ^over^ the ¡lazy! dog..." and "C:/program files/some vendor/their 2nd application/a file1.txt".

If you want 2Nd instead of 2nd, you can change to /([a-z])(\w*)/g.

The first form can be simplified as:

function toTitleCase(toTransform) {
  return toTransform.replace(/\b([a-z])/g, function (_, initial) {
      return initial.toUpperCase();
  });
}
link|improve this answer
feedback

Just in case you are worried about those filler words, you can always just tell the function what not to capitalize.

function titleCase(str, glue){
/*
 * @param String str The text to be converted to titleCase.
 * @param Array glue the words to leave in lowercase. 
 */
glue = (glue)?glue:new Array(
        'of',
        'for',
        'and'
);
return str.replace(/(\w)(\w*)/g, function(_, i, r){
    var j = i.toUpperCase() + (r != null ? r : "");
    return (glue.indexOf(j.toLowerCase())<0)?j:j.toLowerCase();
});}

Hope this helps you out.

link|improve this answer
feedback

In case this helps anyone, here's my function that is a melding of many of the posts above:

String.prototype.toTitleCase = function() {
    var i, str, lowers, uppers;
    str = this.replace(/\w\S*/g, function(txt) {
        return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
    });

    // Certain minor words should be left lowercase unless 
    // they are the first or last words in the string
    lowers = ['A', 'An', 'The', 'And', 'But', 'Or', 'For', 'Nor', 'As', 'At', 
    'By', 'For', 'From', 'In', 'Into', 'Near', 'Of', 'On', 'Onto', 'To', 'With'];
    for (i = 0; i < lowers.length; i++)
        str = str.replace(new RegExp('\\s' + lowers[i] + '\\s', 'g'), 
            function(txt) {
                return txt.toLowerCase();
            });

    // Certain words such as initialisms or acronyms should be left uppercase
    uppers = ['Id'];
    for (i = 0; i < uppers.length; i++)
        str = str.replace(new RegExp('\\b' + uppers[i] + '\\b', 'g'), 
            uppers[i].toUpperCase());

    return str;
}

For example:

"TO LOGIN TO THIS SITE, please enter a valid id:".toTitleCase();
// Returns: "To Login to This Site, Please Enter a Valid ID:"
link|improve this answer
I liked yours, I also encounter problems when dealing with roman numbers... just patched it with I, II, III, IV, etc. – Marcelo Aug 21 '11 at 0:19
feedback

I made this function which can handle last names (so it's not title case) such as "McDonald" or "MacDonald" or "O'Toole" or "D'Orazio". It doesn't however handle German or Dutch names with "van" or "von" which are often in lower-case... I believe "de" is often lower-case too such as "Robert de Niro". These would still have to be addressed.

function toProperCase(s)
{
  return s.toLowerCase().replace( /\b((m)(a?c))?(\w)/g,
          function($1, $2, $3, $4, $5) { if($2){return $3.toUpperCase()+$4+$5.toUpperCase();} return $1.toUpperCase(); });
}
link|improve this answer
feedback

Without using regex just for reference:

String.prototype.toProperCase = function() {
  var words = this.split(' ');
  var results = [];
  for (var i=0; i < words.length; i++) {
      var letter = words[i].charAt(0).toUpperCase();
      results.push(letter + words[i].slice(1));
  }
  return results.join(' ');
};

'john smith'.toProperCase();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.