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
|
How do I capitalize the first character of a string, but not change the case of any of the other letters? For example:
|
|||||||||||||||||
|
|
Another solution:
|
|||||||||||||||||||||
|
|
A more object-oriented approach:
And then:
|
|||||||||||||||||||||
|
|
Here is a shortened version of the popular answer that gets the first letter by treating the string as an array:
Update: According to the comments below this doesn't work in IE 7 or below. |
|||||||||||||||
|
|
It seems to be easier in CSS:
This is from CSS text-transform Property (at W3Schools). |
|||||||||||||||||||||
|
|
Capitalize the first letter of all words in a string:
|
|||||||||||||
|
|
If you are wanting to reformat all-caps text, you might want to modify the other examples as such:
This will ensure that the following text is changed:
|
|||
|
|
Usage:
this is a text string => This Is A Text String |
|||||||||||||
|
(You may encapsulate it in a function or even add it to the String prototype if you use it frequently) |
|||||
|
|
In CSS :
|
|||||||
|
|
Here is a function called ucfirst() (short for "upper case first letter"):
You can capitalise a string by calling ucfirst("some string") -- for example,
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. |
|||||||||||||||||
|
|
The ucfirst function works if you do it like this
Thanks J-P for the aclaration. |
|||||
|
|
CoffeeScript
As String prototype method:
|
||||
|
One Possible Solution:
use this:
Here is working JS Fiddle |
|||
|
|
|
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):
Here I get the variable from a form (it also works manually):
Output: "I am a Smartypants..."; |
||||
|
|
|
In CoffeeScript, add to the prototype for a string:
Usage would be:
Which yields:
|
||||
|
|
|
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:
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. |
|||
|
|
usage :
|
|||
|
And for all coffee-junkies:
|
||||
|
|
|
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.
|
|||||
|