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
|
I want to capitalize the first character of a string, but not change the case of any of the other letters. For example:
| |||||
feedback
|
|
Another solution:
| |||||||||||
feedback
|
|
A more object-oriented approach:
And then:
| |||||||||||||||||||||
feedback
|
|
Try this:
| |||||||
feedback
|
|
Here is a shortened version of the popular answer that gets the first letter by treating the string as an array:
| |||
|
feedback
|
usage:
this is the text string => This Is The Text String | |||
|
feedback
|
|
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:
| |||
|
feedback
|
|
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. | |||||
feedback
|
|
The ucfirst function works if you do it like this
Thanks J-P for the aclaration. | |||
feedback
|
|
Capitalize the first letter of all words in a string:
| |||||||
feedback
|
|
Seems to be easier in CSS...
from: http://www.w3schools.com/cssref/pr_text_text-transform.asp | |||||||
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:
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. | |||
|
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.
| |||||
feedback
|
|
CoffeeScript
| ||||
|
feedback
|