Top "Uppercase" questions

Uppercase characters are capital letters.

Upper vs Lower Case

When doing case-insensitive comparisons, is it more efficient to convert the string to upper case or lower case? Does it …

string language-agnostic uppercase
URL Structure: Lower case VS Upper case

Just trigger in my mind when I was going through some websites were they having upper case and lower case …

url uppercase lowercase
Use Java and RegEx to convert casing in a string

Problem: Turn "My Testtext TARGETSTRING My Testtext" into "My Testtext targetstring My Testtext" Perl supports the "\L"-operation which can …

java regex string uppercase lowercase
how to change the case of first letter of a string?

s = ['my', 'name'] I want to change the 1st letter of each element in to Upper Case. s = ['My', 'Name']

python string uppercase
Is it bad to use uppercase letters for html tags?

What is the best practice? <HTML> or <html> And why we should stick with one particular …

html uppercase lowercase
Convert an entire range to uppercase without looping through all the cells

right now I'm using the following code to convert a list of ticker symbols from lowercase to upper case letters: …

excel vba range uppercase
Oracle SQLDeveloper Autocomplete in Lowercase (How about Uppercase)

I am currently using the latest Oracle sql developer. I just have one nuisance here. When I do auto-complete of …

oracle autocomplete uppercase oracle-sqldeveloper
How can I convert Unicode to uppercase to print it?

I have this: >>> print 'example' example >>> print 'exámple' exámple >>> …

python unicode python-2.x case-sensitive uppercase
Capitalize the first letter of each word in a filename with powershell

I want to change the names of some files automatically. With this code I change the lowercase letters to uppercase: …

powershell cmd uppercase lowercase
How can I get Python to use upper case letters when printing hexadecimal values?

In Python v2.6 I can get hexadecimal for my integers in one of two ways: print(("0x%x")%value) print(…

python formatting hex uppercase