Questions tagged [capitalize]

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

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

Mark the questions with this tag if it concerns automatic capitalization of strings.

If question is related to make the whole string upper-case, use tag .

321 questions
-4
votes
1 answer

Hackerrank Python Challenge: Capitalize The First letter of each word in a String in Python

Capitalize! You are asked to ensure that the first and last names of people begin with a capital letter in their passports. For example, alison heck should be capitalized correctly as Alison Heck. Given a full name, your task is to capitalize the…
Zenonymous
  • 149
  • 2
  • 4
-4
votes
1 answer

Can Python remove elements from a list that have any uncapitalized word?

thanks for looking. I'm still working on my named entity recognition project, and I'm almost done. My project was to extract all the names of people from a long string, and I've gotten to the point where I have a list of names, which I have named…
Jack Harris
  • 245
  • 4
  • 13
-4
votes
3 answers

Convert first letter of each word entered in a textbox to captial

I have made a form for billing, but am having trouble converting the first letter entered in a text box to capital. I've looked around a bit, but couldn't find any luck. Basically what I'm looking for is if possible the second I enter a letter into…
-5
votes
2 answers

Convert first 2 letters of all records to Uppercase in python

I have a dataframe DF with just 1 column and I want to uppercase first 2 letters of all the records in python. how do I do that ?
Yuvraj Singh
  • 37
  • 1
  • 1
  • 6
-5
votes
3 answers

How to capitalize part of an element in html/css?

there I have the following element:

Welcome in our flat.

And I would like to modify it with CSS so that what it gonna be displayed will be: Welcome to OUR flat. So, I wanna capitalize the word OUR. Does anyone know how I can do that?
ffblord
  • 403
  • 3
  • 7
  • 14
-5
votes
3 answers

why can't I convert all words to uppercase C

I don't know why input capital letters in string are changed to random code #include #include #define length 100 int main() { int count; char word[length]; printf("Please input your word ="); scanf("%s", &word); …
1 2 3
21
22