Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I 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
share|improve this question
12  
There must be a JQuery Plugin for that... – theomega Apr 8 '12 at 10:23
41  
This question needs an accepted answer... – Frederik Wordenskjold Apr 29 '12 at 18:52
@tghw I think there are many answers here that are can be accepted. Some I would even consider excellent. But I'm wondering who will. It's not going to be Robert Wills since he hasn't been on SO for 3 years. For a discussion look here – Rembunator Mar 8 at 10:00
3  
Why does this question have a bounty!? :S – Shouvik Mar 11 at 13:50
Underscore has a plugin called underscore.string that includes this and a bunch of other great tools. – Aaron Apr 15 at 19:16

19 Answers

Another solution:

function capitaliseFirstLetter(string)
{
    return string.charAt(0).toUpperCase() + string.slice(1);
}
share|improve this answer
73  
+1 for readability. A simple problem like this doesn't need overkill. – karim79 Jun 22 '09 at 8:37
4  
substring is understood in more browsers than substr – mplungjan Jul 6 '11 at 13:07
40  
+1 for UK spelling – Aram Kocharyan Oct 11 '12 at 3:42
3  
to add to karim79 - its probably overkill to make it a function as javascript will do the same thing to the variable without the function wrapping. I suppose it would be more clear using a function, but its native otherwise, why complicate it with a function wrapper? – Ross Oct 24 '12 at 23:36
2  
Nevermind...""[0].toUpperCase() fails – Christopher Pfohl Jan 4 at 19:42
show 6 more comments

A more object-oriented approach:

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

And then:

"hello world".capitalize();  =>  "Hello world" 
share|improve this answer
41  
+2 for readability and usability. Yum. – chadoh Aug 4 '10 at 17:01
6  
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
36  
In this post-Prototype.js world, it is not suggested to change or extend the native objects. – rxgx Jul 25 '11 at 22:24
5  
@codecowboy perfectionkills.com/… – rxgx Aug 29 '11 at 8:19
37  
@rxgx - The "don't extend" boogeyman is now starting to die off (thank god), and people are pulling their heads out of the jSand and realizing it is just a language feature. Just because Prototype.js extended Object itself for a brief time, doesn't mean extending Natives is bad. You shouldn't do it if you're writing code for an unknown consumer (like an analytics script that goes on random sites), but other than that it's fine. – csuwldcat May 19 '12 at 20:47
show 5 more comments

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

function capitalize(s)
{
    return s[0].toUpperCase() + s.slice(1);
}

Update:

According to the comments below this doesn't work in IE 7 or below.

share|improve this answer
13  
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 '12 at 11:33
@MathiasBynens Thank you :) – mgutt Mar 4 '12 at 13:04
4  
Figures IE would cry... – joelvh Jul 13 '12 at 7:47
1  
who cares, IE7 market is less than 5%! and those are probably your gremma's and grempa's old machine. I say short code FTW! – vsync Dec 3 '12 at 6:20

It seems to be easier in CSS:

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

This is from CSS text-transform Property (at W3Schools).

share|improve this answer
13  
@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 '12 at 9:32
5  
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 '12 at 4:24
10  
Incorrect, Dinesh. He said the first character of the string. – Simon Jun 26 '12 at 0:02
19  
This answer, despite having a ridiculous number of upvotes, is just wrong, as it will capitalize the first letter of every word. @Ryan, you'll earn a Disciplined badge if you delete it. Please do so. – Dan Dascalescu Nov 7 '12 at 6:06
3  
Agree with @DanDascalescu - Ryan's answer is completely wrong. – Timo Nov 14 '12 at 13:15
show 8 more comments

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(" ");
}
share|improve this answer
5  
Re-read question: I want to capitalize the first character of a string, but not change the case of any of the other letters. – JimmyPena Nov 30 '11 at 19:13
10  
+1 because some people Googling this problem might find the above function useful. – Simon Jan 18 '12 at 6:22
I know I did. I'd add one thing, in case the entire string starts capitalized: pieces[i] = j + pieces[i].substr(1).toLowerCase(); – Malovich Dec 20 '12 at 21:16
Another solution to this case: function capitaliseFirstLetters(s) { return s.split(" ").map(function(w) { return w.charAt(0).toUpperCase() + w.substr(1) }).join(" ") } Can be a nice one-liner if it's not put into a function. – Luke Channings Mar 10 at 21:36

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
share|improve this answer
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

share|improve this answer
8  
Regular expressions are overkill for this. – Anthony Sottile Jun 14 '12 at 2:40
1  
This answer is just wrong, as it will capitalize the first letter of every word, while the asker specifically asked for capitalizing only the first letter. @Murat, you'll earn a Disciplined badge if you delete it. Please do so. – Dan Dascalescu Nov 7 '12 at 6:10
+1, this is what I was really looking for. There is a minor bug though, it ought to be return.this.toLocaleLowerCase().replace( ... – tomdemuyt Jan 14 at 21:55
+1, I found this page looking for a javascript version of phps ucfirst, which I suspect is how most people find it. – Benubird Apr 9 at 13:58
yourString.replace(/^[a-z]/, function(m){ return m.toUpperCase() });

(You may encapsulate it in a function or even add it to the String prototype if you use it frequently)

share|improve this answer
2  
Even though this has quite some votes, this is by far the slowest solution posted here. I've put together a little speedtest with the most popular answers from this post, here: forwebonly.com/… – Robin van Baalen Feb 13 at 13:17

In CSS :

p:first-letter {
    text-transform:capitalize;
}
share|improve this answer
3  
+1 for the only CSS solution that capitalizes only the first letter of the string, as the asker asked, not the whole string. Might as well use text-transform: uppercase in that case. – Dan Dascalescu Nov 7 '12 at 6:13
Reports of issues for this solution in Safari - some people getting an additional letter in some versions. – Matt Parkins Dec 1 '12 at 11:35

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.

share|improve this answer
4  
Use String.substring() or String.slice() ... Don't use substr() - it's deprecated. – James Jun 22 '09 at 11:11
2  
@999: where does it say that substr() is deprecated? It's not, even now, three years later, let alone back in 2009 when you made this comment. – Dan Dascalescu Nov 7 '12 at 6:12
substr() may not be marked as deprecated by any popular ECMAScript implementation (I doubt it's not going to disappear anytime soon), but it's not part of the ECMAScript spec. The 3rd edition of the spec mentions it in the non-normative annex in order to "suggests uniform semantics for such properties without making the properties or their semantics part of this standard". – Peter Rust Nov 21 '12 at 22:05
1  
Having 3 methods that do the same thing (substring, substr and slice) is too many, IMO. I always use slice because it supports negative indexes, it doesn't have the confusing arg-swapping behavior and its API is similar to slice in other languages. – Peter Rust Nov 21 '12 at 22:12
+1 for Perly naming! – thealexbaron Mar 1 at 21:54

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.

share|improve this answer
1  
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

CoffeeScript

ucfirst = (str) -> str.substr(0, 1).toUpperCase() + str.substr(1)

As String prototype method:

String::capitalize = -> @substr(0, 1).toUpperCase() + @substr(1)
share|improve this answer
Stupid question but how would you add this to the String prototype in coffeescript? – longda Aug 15 '12 at 17:54
And I just answered my question... see below. – longda Aug 15 '12 at 18:04

One Possible Solution:

function ConvertFirstCharacterToUpperCase(text) {
    return text.substr(0, 1).toUpperCase() + text.substr(1);    
}

use this:

 alert(ConvertFirstCharacterToUpperCase("this is string"));

Here is working JS Fiddle

share|improve this answer

Okay, so I am new to JavaScript. 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...";

share|improve this answer

In CoffeeScript, add to the prototype for a string:

String::capitalize = ->
    return this.substr(0, 1).toUpperCase() + this.substr(1)

Usage would be:

"woobie".capitalize()

Which yields:

"Woobie"
share|improve this answer

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.

share|improve this answer
//uppercase first letter
function ucfirst(field) {
    field.value = field.value.substr(0, 1).toUpperCase() + field.value.substr(1);
}

usage :

<input type="text" onKeyup="ucfirst(this)" />
share|improve this answer
There was no reference to an input field or the requirement of an event to handle this. Aside from that, field.value could be shortened with a variable for readability. – Andrew Bestic May 17 at 2:29
String.prototype.capitalize = function () {
    return this.replace(/^./, function (char) {
        return char.toUpperCase();
    });
};

And for all coffee-junkies:

String::capitalize = ->
    @replace /^./, (char) ->
        char.toUpperCase()
share|improve this answer

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(); } );
}
share|improve this answer
9  
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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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