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
-1
votes
2 answers

java controle upper and lowercase in 2 String

I want to check if every character in a string is the inverse of the other character in the second. By inverse I mean uppercase and lowercase. For example these strings: Ahh7h aHH7H The result will be true I wrote this code but the result is…
user2328999
  • 91
  • 3
  • 12
-1
votes
1 answer

SQL insert values lowercased and with underscores

I've got a database with a list of names, but these names contain spaces and are capitalised. How do I copy the name in each row and put it it back in each row but in a different column (lets say "name_url") after they have been lowercased and…
Daniil
  • 43
  • 1
  • 1
  • 8
-1
votes
2 answers

Uniquely mapping upper case to lower case

I have 2 strings: ahFkZXZ-cHV6emxlZmxvd2RldnIZCxILUHV6emxlSW1hZ2UYgICAgICAgIBcDA ahFkZXZ-cHV6emxlZmxvd2RldnIZCxILUHV6emxlSW1hZ2UYgICAgICAgIBCDA You'll notice that these 2 strings are nearly identical, other than the 3rd-to-last letter 'C' being…
Shaun Budhram
  • 3,690
  • 4
  • 30
  • 41
-1
votes
1 answer

Function to return true if two letters are either both upper or both lower case not working, c++

#include using namespace std; char myChar_1 = 'a'; char myChar_2 = 'b'; char checkChar(char myChar_1,char myChar_2){ if ((isupper(myChar_1) && isupper(myChar_2)) || (islower(myChar_1) && islower(myChar_2))) { return true; …
Nikolai Stiksrud
  • 157
  • 2
  • 4
  • 7
-1
votes
1 answer

Islower function glitch

I'm doing the CS50x class and I am stuck at a glitch. I asked them what was going on and no one knew what was going on. Whenever I try to print a lowercase f it always comes up as ?. Try doing 23 as the argument and abcdefghijklmnopqrstuvwxyz as the…
Jakxna360
  • 857
  • 2
  • 9
  • 31
-1
votes
2 answers

Is there a way to use IgnoreCase in Javascript?

I want to transnlate some words, but i have problems when I write HOUSE in uppercase or mixing. it just work when i write in lowercase