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

Checking for an uppercase in strings inside a list

I have been tasked to do a small mission for a list that contains only strings I need to check the following and create a list if there is a capital letter in the string I need to isolate that word and put it in the new list as a separate word, for…
-2
votes
2 answers

How to use lower() with multiple lists in python?

I'm trying to find certain keywords in the html source code of multiple websites. I want my crawler to find these keywords regardless whether they are written uppercased, or lowercased in the website's html source code. To get this done I've tried…
jakeT888
  • 123
  • 2
  • 17
-2
votes
2 answers

Where do I put return .toLowerCase(); in this program to make it exit even if I put EXIT

I'm trying to make it so that I can exit this program with exit even if someone enters EXIT ExIt, EXit, etc. I tried putting it at the end of the var input at the beginning of the string and at the end of the string in the "}while" statement and it…
-2
votes
2 answers

How to extract a string that is present before ".lower" in c#?

I have a string like string variable1="EXAMPLE"; and later somewhere in my code, I use like Console.WriteLine(variable1.ToLower()); I may use variable1.ToLower() multiple times. But now I want to store the variablename that is converted to Lower…
Vedh
  • 93
  • 1
  • 10
-2
votes
1 answer

in a set transform to lowcase c++ errorC2664

I'm trying to use STL function transform to transform all the strings in a set to lowcase. But I got an error of C2664. I wonder what the wrong with my code? set mydoc; mydoc.insert("ABCD"); transform(mydoc.begin(), mydoc.end(),…
-2
votes
2 answers

Shouldn't input.charAt(0) return a String? Why input.charAt(0) >= int works?

I've been doing exercise. Write a Java program that takes the user to provide a single character from the alphabet. Print Vowel of Consonant, depending on the user input. If the user input is not a letter (between a and z or A and Z), or is a string…
rejnol
  • 3
  • 3
-2
votes
1 answer

Converting all strings in a txt file to lowercase in c

I am assigned to convert all strings to lowercase in a txt file and then output it in a new txt file but i cant seem find anywhere how to do it. Any help would be very appriciated! Thank you This is what i have till now but there is the y at the end…
deathskiller
  • 43
  • 1
  • 6
-2
votes
3 answers

Replace part of string with lower case letters - Swift

I have a Swift based iOS app and one of the features allows you to comment on a post. Anyway, users can add "@mentions" in their posts to tag other people. However I want to stop the user from adding a username with a capital letter. Is there anyway…
Supertecnoboff
  • 6,406
  • 11
  • 57
  • 98
-2
votes
2 answers

Input quote, output in caps, lower case and reverse

I'm trying to make a program in Python 3 (IDLE) which lets the user input a quote and outputs it in upper case, lower case and in reverse. I've tried this: quote = input("Enter your quote here:…
-2
votes
2 answers

Can't make the lc parameter work?

I'm trying to create a simple if statement and want it to ignore case. This is my pseudo code: if (Lowercase $xxx notequal lowercase "xxx") {......} I've tried: if ( -lc $ConfigAppUsers -ne -lc "No" ) if ( lc $ConfigAppUsers -ne lc "No" ) if…
David Gidony
  • 1,243
  • 3
  • 16
  • 31
-2
votes
2 answers

String river = "This is a Test"; to be lowercase using Eclipse.exe

How can I get String river = "This is a Test"; to become lowercase using Eclipse? I have already tried multiple ways using bigRiver but it doesn't work.
J. Doe
  • 1
-2
votes
1 answer

Unable to get value of the property 'toLowerCase', JQUERY 1.10.2

I am using jquery 1.10.2. I am trying to get the following piece of code to work: $("[id*='value_']").val($(this).val()); I know as written the code will just set the value to whatever is currently in the tag. But this is as far as I can go until…
Mildfire
  • 323
  • 1
  • 5
  • 15
-2
votes
3 answers

lowercase to uppercase in C++

note that I am not asking what are the methods to convert lowercase letters to UPPERCASE letters in C++ but instead, I want to know which of these two methods in the codes below (Upper1 and Upper2) are better than the other one and what's the…
Raf
  • 49
  • 1
  • 3
  • 11
-3
votes
3 answers

How to extract the extension from a file path

I have a file path stored as a string in Python, and I need to extract the extension from it. If anyone can share the simplest way to accomplish this task using Python suggestions or code examples I would greatly appreciate it. Thank You!! :)
-3
votes
2 answers

Why is it the lower() function not working for me?

I was just trying to make a text-adventure game but when I tried to make an if-else statement that checks the user input incase-sensitive, it doesn't work when I tried to use the lower function (or anything else). Here is an actual code: def…