Questions tagged [uppercase]

Uppercase characters are capital letters.

Uppercase characters are capital letters: 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 uppercase.

The counterpart of is .


See also: Letter case on Wikipedia

1373 questions
-5
votes
1 answer

string.toUpperCase() and string.toLowercase() not printing

(preface) I actually believe this to be a simple question but im fairly new to programming so it is a bit frustrating for me. This questions pertains to a problem with how uppercase and lowercase string may override each other when displaying…
ben
  • 11
  • 4
-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
-5
votes
7 answers

Check if String is more then 60% uppercase

My question is simple: How to check if a String is more then 60% uppercase?
Bammerbom
  • 43
  • 4
-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); …
-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
-6
votes
2 answers

How to prepend a word with a letter if the first letter of that word is upper-case?

If i have for example this String: String paragraphWord = "This is A String of WoRDs"; This is my desired result: kThis is kA KString of kWorDS So i want to add k before every word which first letter is upper-case. How to do that? This is what i've…
LorenaL
  • 23
  • 1
-6
votes
3 answers

Testing for uppercase, why is toUppercase() alphanumeric in javascript?

How do I isolate toUpperCase() to disregard numbers Live code var data = 'LOL'; var data2 = '1 2 3 4'; if(data2 === data2.toUpperCase()) { document.write('hey'); }else { document.write('nope'); } both will write hey to the document! Why in…
Armeen Moon
  • 18,061
  • 35
  • 120
  • 233
1 2 3
91
92