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

How to count uppercase words in a string in Java?

I need to count the total number of uppercase words in a string, but I just can't figure out how to do it without complex if statements and checks involved. I've tried and written down something like this: private int uppercaseWordsCount(String…
Anacarnil
  • 45
  • 7
-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
1 answer

Make uppercase in array

Use of order Apartment Canada Toronto 38 37 2042 37 Appartment Building Apt 54 357 can you help for…
james
  • 11
  • 1
  • 8
-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
1 answer

Capitalize words without built-in JavaScript methods

I want capitalize words in a string like... Hello World, New York, First Name ...with JavaScript. But the trick is this I don't want to use any built-in JavaScript functions like toUpperCase, split, join, etc. I have made one sample program but got…
-2
votes
2 answers

SQL case unsensitive

Hello i have a table with colums called NAME, in this colum i can have this type of name : First name Uppercase and other lower (Jack), all name uppercase (JACK), and name with space (Jack ) or (JACK ). How can show all name than have jack in all…
v3ctor
  • 105
  • 1
  • 2
  • 10
-2
votes
3 answers

PHP ucwords/ucfirst error on echo but works on var_dump

Im using Codeigniter, Please take a look below: router->fetch_class(); $method = $this->router->fetch_method(); var_dump($class); var_dump(ucwords($class)); var_dump(ucwords(strtolower($class))); ?>
junior
  • 808
  • 15
  • 25
-2
votes
2 answers

Split and change first character of a word to uppercase in Python

I have a list: s = ['SMITH', 'JONES', 'Paul'] I need only the fist letter of each element to be uppercase and all the elements to be connected by an underscore: s = ['Smith_Jones_Paul'] I have a number of those and want to make a loop to change…
-2
votes
1 answer

Apply uppercase to lists not working

list: board = [] for i in range(0,5): board_list = ["o"] * 5 board.append(board_list) print str(board).upper() Problem here how can I make it so that I can lower or upper this in Python 3.x? If I were to do the normal way without using a…
likewyise
  • 101
  • 2
-2
votes
1 answer

Python: Pig Latin Function

I'm stuck on a really hard question for my class in which I need to create a Pig Latin converter in Python for a given string. Basically, here are the rules. For any word that begins with one or more consonants (y is considered a consonant): move…
user3483844
  • 133
  • 1
  • 1
  • 13
-2
votes
1 answer

Make lowercase letters in a string uppercase

Are there any methods for taking a string and converting all lowercase letters to uppercase? I was thinking of making a for-loop to run through, check each character, see if it is in range 0061-007A (lowercase letters) and just subtracting 26 (base…
Albert Renshaw
  • 17,282
  • 18
  • 107
  • 195
-2
votes
2 answers

How can I implement a program that scrolls a string, and for each ocurrence of a letter place the ocurrence in uppercase?

What I need to do is to Implement a program that receives a string A and any letter t. Scroll through each character of the string and for each occurrence of the letter of t entry, place in uppercase each occurrence in the string. Then I did…
-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
1 answer

How to make uppercase with charAt() method in Java?

I am trying to make a program where a input an email from the user. I have to create a username from the email by deleting the part that comes after ‘@’ and I will display that username to the user. I will ignore the numbers and after a '.' and I…
user12662795
-3
votes
2 answers

Bootstrap Typography: No class attribute with appropriate values for uppercase and reverse not found

The question is: Create a newspaper layout as depicted in the image(Which is looking same as the output of my code) using bootstrap and html components Image link:…