answersLogoWhite

0

string s = "asdfqwer";

s = s.ToUpper(System.Globalization.CultureInfo.CurrentCulture);

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Write a shell program to translate the6 etcpasswd file into uppercase?

tr [:lower:] [:upper:] < /etc/passwd > somefile


Write a c program to accept a numbers and generate square root cube and exponential values?

write a c program to accept a number and generate a square root cube and exponential values


Write a program using CSharp to simulate a text editor to convert to upper Case?

richTextBox1.Text = richTextBox1.Text.ToUpper(); Simple, but i would execute on a button click, not on a Textchanged Condition.


Write a program using a loop to output all the letters of the alphabet in uppercase?

Here's the code for your program: # Loop through the uppercase alphabet letters for letter in range(ord('A'), ord('Z') + 1): print(chr(letter)) BTW you can use this code in Python and try it out for yourself.


When you write the word police in a sentence does it have to be uppercase?

No.


Can you write a program to generate sinx table where x varies from 0 to 180 in steps of 15?

Yes, I can.


How to write post code in uppercase letters?

Nashik road


Write a c program to generate student mark details using union and find total and average and grade?

write a c program to display marks,total,average,grade using union


Write a program to initialize a character and print whether it is uppercase lowercase or special character in java module 1?

I'll just write a function to do that, I hope the good people won't try to run it as it is.... void function() { char c = 'a'; if( c >= 'a' && c <='z' ) System.out.println("LowerCase"); else if( c>='A' && c <='Z' ) System.out.println("UpperCase"); else System.out.println("Special Character"); }


How do you write roman numreral 2-5-74?

Ii - v - lxxiv Of course when I gave this answer, it was all in uppercase. II, V, and LXXIV, all uppercase.


How do I write a program to do the following... Write a VBA code to take the TippingBucketData.txt file and process it to generate an output file.?

Without knowing the contents of the TippingBucketData.txt file nor how to process it, it would be impossible to say how such a program would be written.


Write a program convert a string from uppercase to lower case and vice-versa without using string tolower and string toupper commands in TCL?

[ string toupper $str ] or [ string tolower $str ]