up vote 129 down vote favorite
25
share [g+] share [fb]

I want to capitalize the first character of a string, but not change the case of any of the other letters. For example:

  • this is a test -> This is a test
  • the Eiffel Tower -> The Eiffel Tower
  • /index.html -> /index.html
link|improve this question
4  
thanks, great question – Click Upvote Sep 9 '09 at 2:54
feedback

13 Answers

Another solution:

function capitaliseFirstLetter(string)
{
    return string.charAt(0).toUpperCase() + string.slice(1);
}
link|improve this answer
25  
+1 for readability. A simple problem like this doesn't need overkill. – karim79 Jun 22 '09 at 8:37
Hm, I got an error here on the slice function. Changed to substr instead. Maybe it was something else that was wrong, but works here now at least :p – Svish Jun 30 '10 at 13:23
2  
substring is understood in more browsers than substr – mplungjan Jul 6 '11 at 13:07
feedback

A more object-oriented approach:

String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
}

And then:

"hello world".capitalize();  =>  "Hello world"
link|improve this answer
15  
+2 for readability and usability. Yum. – chadoh Aug 4 '10 at 17:01
2  
I like this solution cause it's like Ruby, and Ruby is sweet! :) I lower case all the other letters of the string so that it works exactly like Ruby: return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase(); – MattDiPasquale Mar 8 '11 at 18:21
2  
The slice needs to be lowercase. – Keyo Jun 19 '11 at 21:17
15  
In this post-Prototype.js world, it is not suggested to change or extend the native objects. – rxgx Jul 25 '11 at 22:24
3  
@codecowboy perfectionkills.com/… – rxgx Aug 29 '11 at 8:19
show 2 more comments
feedback

Try this:

str.replace(/^\w/, function($0) { return $0.toUpperCase(); })
link|improve this answer
Most clever answer by far, here's hoping it gets voted up – Drew Dec 18 '10 at 6:26
7  
This solution is a bit slower, I believe, than the charAt + concatenation solutions suggested above, because it uses a regex. – fisherwebdev Aug 30 '11 at 6:39
feedback

Here is a shortened version of the popular answer that gets the first letter by treating the string as an array:

function capitaliseFirstLetter(string)
{
    return string[0].toUpperCase() + string.slice(1);
}
link|improve this answer
feedback
String.prototype.capitalize = function(){
   return this.replace( /(^|\s)([a-z])/g , function(m,p1,p2){ return p1+p2.toUpperCase(); } );
  };

usage:

capitalizedString = someString.capitalize();

this is the text string => This Is The Text String

link|improve this answer
feedback

If you are wanting to reformat all-caps text, you might want to modify the other examples as such:

function capitalize (text) {
    return text.charAt(0).toUpperCase() + text.slice(1).toLowerCase();
}

This will ensure that the following text is changed:

TEST => Test
This Is A TeST => This is a test
link|improve this answer
feedback

Here is a function called ucfirst() (short for "upper case first letter"):

function ucfirst(str) {
    var firstLetter = str.substr(0, 1);
    return firstLetter.toUpperCase() + str.substr(1);
}

You can capitalise a string by calling ucfirst("some string") -- for example,

ucfirst("this is a test") --> "This is a test"

It works by splitting the string into two pieces. On the first line it pulls out firstLetter and then on the second line it capitalises firstLetter by calling firstLetter.toUpperCase() and joins it with the rest of the string, which is found by calling str.substr(1).

You might think this would fail for an empty string, and indeed in a language like C you would have to cater for this. However in Javascript, when you take a substring of an empty string, you just get an empty string back.

link|improve this answer
2  
Use String.substring() or String.slice() ... Don't use substr() - it's deprecated. – 999 Jun 22 '09 at 11:11
feedback

The ucfirst function works if you do it like this

function ucfirst(str) {
var firstLetter = str.slice(0,1);
return firstLetter.toUpperCase() + str.substring(1);
}

Thanks J-P for the aclaration.

link|improve this answer
nice name for the function! It's name is identical to the PHP equivalent. There is actually an entire library of PHP functions written in JS; it's called PHP.js and to be found on http://phpjs.org – Hussam Dec 8 '11 at 14:29
feedback

Capitalize the first letter of all words in a string:

function ucFirstAllWords( str )
{
    var pieces = str.split(" ");
    for ( var i = 0; i < pieces.length; i++ )
    {
        var j = pieces[i].charAt(0).toUpperCase();
        pieces[i] = j + pieces[i].substr(1);
    }
    return pieces.join(" ");
}
link|improve this answer
1  
Re-read question: I want to capitalize the first character of a string, but not change the case of any of the other letters. – JP. Nov 30 '11 at 19:13
+1 because some people Googling this problem might find the above function useful. – Simon Jan 18 at 6:22
feedback

Seems to be easier in CSS...

<style type="text/css">
p.capitalize {text-transform:capitalize;}
</style>
<p class="capitalize">This is some text.</p>

from: http://www.w3schools.com/cssref/pr_text_text-transform.asp

link|improve this answer
+1 Wow. Awesome idea. Why not let the browser do the work... – Simon Jan 18 at 6:24
@Simon It's not stated that the string is necessarily going to be output as part of a HTML document - CSS is only going to be of use if it is. – Adam Hepton Jan 18 at 9:32
Adam, true, but I'd guess that over 95% of the Javascript out there is used with HTML & CSS. Unfortunately, the "capitalize" statement actually capitalizes every word, so you'd still need JS to capitalize only the first letter of the string. – Simon Jan 21 at 4:24
feedback

If you go with one of the regex answers, remember they will only work with ASCII characters. All your unicode letters will not be uppercased. The XRegExp library and its unicode plugins solve this problem if you want to stick with regexps. So something like this would work:

String.prototype.capitalize = function () {
    return this.replace(XRegExp("^\\p{L}"), function ($0) { return $0.toUpperCase(); })
}

Considering that it still doesn't cover all possibilities (combined characters, see http://www.regular-expressions.info/unicode.html) it seems easier to just use the .charAt(0).toUpperCase() approach.

link|improve this answer
feedback

If I may alter the code a little. I found that if I run an all caps string through this function, nothing happens. So... here is my tid bit. Force the string to lower case first.

String.prototype.capitalize = function(){
 return this.toLowerCase().replace( /(^|\s)([a-z])/g , function(m,p1,p2){ return p1+p2.toUpperCase(); } );
}
link|improve this answer
4  
The function should have no effect on an string which is already uppercase. The question specifically asked for the remaining characters to be untouched; see his example with "the Eiffel Tower" -> "The Eiffel Tower". You definitely should not lower-case everything first. – meagar Jan 28 '11 at 20:32
feedback

CoffeeScript

ucfirst = (str) -> str.substr(0, 1).toUpperCase() + str.substr(1)
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.