Questions tagged [lowercase]

Lowercase characters are letters in minuscule: a, b, c, …

Lowercase characters are letters in minuscule: a, b, c, …

In ASCII, they are the characters in the range [a-z]. But other characters (for instance accented characters like é, è, ê, à, î, ï, ù) are also considered lowercase.

The counterpart of is .


See also: Letter case on Wikipedia

1025 questions
-5
votes
1 answer

Detect index of lower case letters

How do I get the index of all lower case letters of a string? For example, the string "AbCd" would lead to [1,3].
user1251007
  • 15,891
  • 14
  • 50
  • 76
-5
votes
1 answer

Change characters in Java

I have a question that is related to changing character in Java For instance : this is my string value Sue sells sea shellS on the seashore! How to change the capital letter of "S" to small letter and change the small letter of "s" to capital…
Agus Maloco
  • 11
  • 1
  • 1
  • 6
-6
votes
2 answers

Split string on capital letter and a capital letter followed by a lowercase letter

Below is my string pattern, 'YES-HIDETotal Maze LLC.' & I want to split the above string into below list, ['YES-HIDE', 'Total Maze LLC.'] How can I do this using regex in python? Edit: I'd like to split a string on a capital letter next to a…
kygcoleman
  • 734
  • 15
  • 25
-7
votes
3 answers

Converting specific letters to lowercase in Java

Suppose I have a String in java with the value "hELLo". How do I convert it into "heLLo" (The second character must be lowercase) ?
Lorren112
  • 93
  • 1
  • 2
  • 6
-7
votes
1 answer

Why doesn't if, elif or else work with .lower() in Python?

The program needs to accept and match any upper and lower case versions of the word, which is why .lower() is used. When this is ran and 'January' is entered, the else line is printed instead of the if line. month = input("\nPlease enter the…
user4504302
1 2 3
68
69