Top "Capitalize" questions

Capitalize is writing a word with its first letter as a capital letter (upper-case letter) and the remaining letters in lower case.

How do I make the first letter of a string uppercase in JavaScript?

How do I make the first letter of a string uppercase, but not change the case of any of the …

javascript string letter capitalize
How can I capitalize the first letter of each word in a string?

s = 'the brown fox' ...do something here... s should be: 'The Brown Fox' What's the easiest way to do this?

python capitalization capitalize
How to capitalize the first letter of a String in Java?

I am using Java to get a String input from the user. I am trying to make the first letter …

java string capitalize
Regular expression for checking if capital letters are found consecutively in a string?

I want to know the regexp for the following case: The string should contain only alphabetic letters. It must start …

regex capitalize
python capitalize first letter only

I am aware .capitalize() capitalizes the first letter of a string but what if the first character is a integer? …

python capitalize letter
Capitalize first letter. MySQL

Does any one know the equivalent to this TSQL in MySQL parlance? I am trying to capitalize the first letter …

mysql string capitalize
Capitalize the first letter of string in AngularJs

I want capitalize first character of string in angularjs As i used {{ uppercase_expression | uppercase}} it convert whole string to …

javascript angularjs filter uppercase capitalize
How do I capitalize first letter of first name and last name in C#?

Is there an easy way to capitalize the first letter of a string and lower the rest of it? Is …

c# string capitalize
Regex capitalize first letter every word, also after a special character like a dash

I use this #(\s|^)([a-z0-9-_]+)#i for capitalize every first letter every word, i want it also to …

regex letter capitalize
Check if first letter of word is a capital letter

Is it possible in JavaScript to find out if the first letter of a word is a capital letter?

javascript capitalize