Top "Uppercase" questions

Uppercase characters are capital letters.

How to capitalize all letters in an NSString

I'm trying to capitalize all letters in a NSString for a table cell label. here's my code: // cell title and …

iphone ios objective-c uppercase
WPF/XAML: How to make all text upper case in TextBlock?

I want all characters in a TextBlock to be displayed in uppercase <TextBlock Name="tbAbc" FontSize="12" TextAlignment="Center" Text="…

wpf xaml uppercase textblock
How to make JSF inputText field upper case on blur

I would like to make a JSF inputText field into upper case when the user moves focus away from the …

jsf jsf-2 uppercase onblur
How to set a string to all lowercase

I have a char foo[SIZE]; //(string) and have inputed it correctly using %s (as in it printfs the correct …

c uppercase lowercase tolower toupper
How to replace uppercase letters to lowercase letters using regex in Eclipse?

I'd like to go through all of my source code files and replace every occurence of k_Xyyy with k_…

regex eclipse uppercase lowercase
Vue.js: uppercase doesn't work

i have this code: data: { cols: ['nome', 'data', 'size', 'ext'], items: [] }, I would need to turn the text into uppercase. …

javascript vue.js uppercase
How to extract all UPPER from a string? Python

#input my_string = 'abcdefgABCDEFGHIJKLMNOP' how would one extract all the UPPER from a string? #output my_upper = 'ABCDEFGHIJKLMNOP'

python string extract uppercase lowercase
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

nginx rewrite uppercase lowercase
How to check for uppercase letters in MySQL?

I want to check, if a string consits only of uppercase letters. I know that RLIKE/REGEXP are not case …

mysql regex uppercase
Swapping uppercase and lowercase in a string

I would like to change the chars of a string from lowercase to uppercase. My code is below, the output …

python string python-2.x uppercase lowercase