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
4  
thanks, great question – Click Upvote Sep 9 '09 at 2:54
2  
There must be a JQuery Plugin for that... – theomega Apr 8 at 10:23
This question needs an accepted answer... – Frederik Wordenskjold Apr 29 at 18:52
feedback

14 Answers

Another solution:

function capitaliseFirstLetter(string)
{
    return string.charAt(0).toUpperCase() + string.slice(1);
}
link
34  
+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
3  
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
19  
+2 for readability and usability. Yum. – chadoh Aug 4 '10 at 17:01
3  
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
24  
In this post-Prototype.js world, it is not suggested to change or extend the native objects. – rxgx Jul 25 '11 at 22:24
4  
@codecowboy perfectionkills.com/… – rxgx Aug 29 '11 at 8:19
show 3 more comments
feedback

Try this:

str.replace(/^\w/, function($0) { return $0.toUpperCase(); })
link
Most clever answer by far, here's hoping it gets voted up – Drew Dec 18 '10 at 6:26
9  
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
@fisherwebdev The regular expression is unlikely to be the bottleneck, but the lexical closure cost of using .replace(regex, function) might be. – Sharon Feb 14 at 11:37
3  
I don't understand programmers who think it is "clever" to write code that is difficult to interpret. – sanity Feb 18 at 14:08
2  
@sanity I have to admit that this is not the most comprehensive solution. But I wouldn’t call it difficult to understand either. It was just the first that came to my mind. – Gumbo Feb 18 at 16:32
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
3  
This won’t work in IE < 8, as those browsers don’t support string indexing. IE8 itself supports it, but only for string literals — not for string objects. – Mathias Bynens Feb 14 at 11:33
@MathiasBynens Thank you :) – mgutt Mar 4 at 13:04
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
+1 Wow. Awesome idea. Why not let the browser do the work... – Simon Jan 18 at 6:24
2  
@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
1  
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
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 a text string => This Is A Text String

link
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
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
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  
+1 because some people Googling this problem might find the above function useful. – Simon Jan 18 at 6:22
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
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
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

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
feedback

Okay so I am a Javascript noob. I wasn't able to get the above to work for me. So I started putting it together myself. Here's my idea (about the same, different and working syntax):

String name = request.getParameter("name");
name = name.toUpperCase().charAt(0) + name.substring(1);
out.println(name);

Here I get the Variable from a Form,... it also works manually...

String name = "i am a Smartypants...";
name = name.toUpperCase().charAt(0) + name.substring(1);
out.println(name);

Output: "I am a Smartypants...";

Good luck everyone.

link
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
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
feedback

Your Answer

 
or
required, but never shown

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