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
40
votes
11 answers

How to find values in all caps in SQL Server?

How can I find column values that are in all caps? Like LastName = 'SMITH' instead of 'Smith' Here is what I was trying... SELECT * FROM MyTable WHERE FirstName = UPPER(FirstName)
daveomcd
  • 6,367
  • 14
  • 83
  • 137
40
votes
7 answers

Uppercase first letter in NSString

How can I uppercase the fisrt letter of a NSString, and removing any accents ? For instance, Àlter, Alter, alter should become Alter. But, /lter, )lter, :lter should remains the same, as the first character is not a letter.
Nielsou Hacken-Bergen
  • 2,606
  • 6
  • 27
  • 37
39
votes
11 answers

iPhone Force Textbox Input to Upper Case

How do I force characters input into a textbox on the iPhone to upper case?
hungbm06
  • 1,549
  • 6
  • 24
  • 32
38
votes
5 answers

How can I convert Unicode to uppercase to print it?

I have this: >>> print 'example' example >>> print 'exámple' exámple >>> print 'exámple'.upper() EXáMPLE What I need to do to print: EXÁMPLE (Where the 'a' gets its accute accent, but in uppercase.) I'm using Python 2.6.
Alex. S.
  • 143,260
  • 19
  • 55
  • 62
38
votes
13 answers

Convert to uppercase as user types using javascript

I want to convert lowercase chars to uppercase as the user types using javascript. Any suggestions are welcome. I have tried the following: $("#textbox").live('keypress', function (e) { if (e.which >= 97 && e.which <= 122) { var newKey =…
Butcher
  • 395
  • 1
  • 3
  • 4
38
votes
4 answers

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 combination in url something like http://www.domain.com/Home/Article Now as I know we should always use lowercase in url but have not idea…
Code Lover
  • 8,099
  • 20
  • 84
  • 154
37
votes
3 answers

Is it possible to replace to uppercase in Visual Studio?

Is it possible to replace to upper case in Visual Studio using "Find and Replace" dialog and RegEx (?) à la: . => Upper(.)? Say I have: m_ablabla I want: _Ablabla
serhio
  • 28,010
  • 62
  • 221
  • 374
37
votes
8 answers

How to Convert a C++ String to Uppercase

I need to convert a string in C++ to full upper case. I've been searching for a while and found one way to do it: #include #include #include using namespace std; int main() { string input; cin >> input; …
Thomas W.
  • 511
  • 1
  • 5
  • 10
35
votes
5 answers

Automatically capitalize all input in WPF

Is there a way to automatically capitalize all input throughout a WPF app?
a_hardin
  • 4,991
  • 4
  • 32
  • 40
35
votes
2 answers

Convert strings to UPPERCASE in SQL Server

What is the T-SQL function for converting strings into upper case in SQL Server?
user688609
  • 351
  • 1
  • 3
  • 3
35
votes
4 answers

How to check for uppercase letters in MySQL?

I want to check if a string consists only of uppercase letters. I know that RLIKE/REGEXP are not case sensitive in MySQL, so I tried to use the :upper: character class: SELECT 'z' REGEXP '^[[:upper:]]+$'; This gives true, although the z is in lower…
R_User
  • 10,682
  • 25
  • 79
  • 120
34
votes
8 answers

Is there a reason to use uppercase letters for hexadecimal CSS color values?

I see that colors in CSS properties values are commonly written in the uppercase form: .foo .bar { background-color: #A41B35; color: #FFF; } But you can also use: /* Same same */ .foo .bar { background-color: #a41b35; color: #fff; } Or…
smonff
  • 3,399
  • 3
  • 36
  • 46
34
votes
21 answers

How can I force input to uppercase in an ASP.NET textbox?

I'm writing an ASP.NET application. I have a textbox on a webform, and I want to force whatever the user types to upper case. I'd like to do this on the front end. You should also note that there is a validation control on this textbox, so I want to…
Aheho
  • 12,622
  • 13
  • 54
  • 83
33
votes
5 answers

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']
yyyy
  • 347
  • 1
  • 3
  • 3
33
votes
8 answers

How i can translate uppercase to lowercase letters in a rewrite rule in nginx web server?

I need to translate the address: www.example.com/TEST in ---> www.example.com/test
Peak
  • 331
  • 1
  • 3
  • 5
1 2
3
91 92