Most voted "capitalisation" questions
Capitalize is to write a word with the first uppercase letter (uppercase) and the remaining letters in lowercase. Use this tag for automatic string capitalization. If question is related to string transformation to uppercase, use tag [uppercase].
Learn more…3 questions
Sort by count of
-
30
votes3
answers2867
viewsCapitalizing on C#names
I have in my application given names in capital letters, for example: "JOSÉ DA SILVA". I would like to format as follows: "José da Silva". How to do?
-
10
votes2
answers908
viewsCapitalize Javascript text, ignoring abbreviations
I have a Javascript code to capitalize text that treats some exceptions. However, I would like to address a few more, such as ignoring abbreviations, which would be to have a point before or after…
-
0
votes0
answers19
viewsCAPITALIZE THE STRING WITHIN THE FUNCTION
I need to solve an exercise and can’t find a solution. I’m learning Javascript yet. function capitalize(word){ return } I need to capitalize the word inserted in the word variable, but I can’t…