Home
Map
String ToLower and ToUpper ExamplesUse the ToLower and ToUpper methods. Convert uppercase characters in strings to lowercase ones.
C#
This page was last reviewed on Mar 1, 2023.
ToLower, ToUpper. Every letter has an uppercase and lowercase form. With the C# ToLower and ToUpper methods on the string type, we can convert cases.
Cast
String Uppercase First Letter
Method notes. ToLower changes strings to be all lowercase. It converts an entire string—without changing letters that are already lowercased or digits.
ToLower example. We call ToLower on a string—it will return a copied version that is all lowercase. Characters such as digits will not be modified. Only uppercase letters are changed.
Tip The first string is declared and the instance method ToLower is called on it. That method returns a new string that is lowercase.
Important The original string is not modified. The Console.WriteLine method is called with a format string.
Console.WriteLine
string.Format
Detail ToLower copies a string and returns a reference to the new string. The original string is unchanged.
using System; // Input string. string mixedCase = "CATx2"; // Call ToLower method. // ... This returns a new string copy. string lower = mixedCase.ToLower(); // Display results. Console.WriteLine("BEFORE: " + mixedCase); Console.WriteLine(" AFTER: " + lower);
BEFORE: CATx2 AFTER: catx2
Example, CultureInfo. Next we use CultureInfo with ToLower. This example has improved performance over the code in the first example. This is shown in the benchmark later.
Tip You can see that after the first string is declared, we declare a new CultureInfo, which we acquire from the CurrentCulture property.
Finally Internally this property fetches the current thread's globalization state. The program calls ToLower with one parameter.
Info Internally this method doesn't need to fetch the CurrentCulture because it already has it.
using System; using System.Globalization; class Program { static void Main() { // Input string. string upper = "UPPERCASE STRING"; // Get current culture. CultureInfo culture = CultureInfo.CurrentCulture; // Call ToLower instance method with globalization parameter. string lower = upper.ToLower(culture); // Display result. Console.WriteLine(lower); } }
uppercase string
ToUpper example. ToUpper uppercases all letters in a string. It is useful for processing text input or for when you need to check the string against an already uppercase string.
Detail ToUpper is an instance method on the string type, which means you must have a string variable instance to call it.
Tip ToUpper works the same as ToLower except it changes lowercase characters to uppercase characters.
Detail The CultureInfo.InvariantCulture class specifies we want the string to be uppercased the same way on all computers.
using System; using System.Globalization; class Program { static void Main() { // // Uppercase this mixed case string. // string value1 = "Lowercase string."; string upper1 = value1.ToUpper(); Console.WriteLine(upper1); // // Uppercase this string. // string value2 = "ABC123"; string upper2 = value2.ToUpper(CultureInfo.InvariantCulture); Console.WriteLine(upper2); } }
LOWERCASE STRING. ABC123
ToLowerInvariant. ToLowerInvariant and ToUpperInvariant affect strings differently than ToLower and ToUpper. The word "invariant" indicates the system's culture has no effect on the result.
Detail This program shows that the invariant methods act upon the characters in the expected way.
And In some cases, these invariant methods can be different from other methods because they specify the invariant culture.
using System; class Program { static void Main() { // This demonstrates the invariant methods. // ... They act in the expected way. string test1 = "Cat"; Console.WriteLine(test1.ToLowerInvariant()); Console.WriteLine(test1.ToUpperInvariant()); } }
cat CAT
Benchmark. Here I tested the performance of ToLower against the performance of ToLowerInvariant. I found a difference between the 2 methods.
Version 1 This code uses ToLower with no arguments to lowercase the text string.
Version 2 This version of the code uses ToLowerInvariant to lowercase the string.
Detail Here we use ToLower with a CultureInfo argument (CurrentCulture) to lowercase the string data.
Result Currently, in 2021, we find that the ToLowerInvariant method seems to perform the fastest.
using System; using System.Diagnostics; using System.Globalization; string text = "This is an UPPER string."; CultureInfo c = CultureInfo.CurrentCulture; const int m = 1000000; // Version 1: ToLower with no arguments. Stopwatch s1 = Stopwatch.StartNew(); for (int i = 0; i < m; i++) { string text2 = text.ToLower(); if (text2 == null) { return; } } s1.Stop(); // Version 2: ToLowerInvariant. Stopwatch s2 = Stopwatch.StartNew(); for (int i = 0; i < m; i++) { string text2 = text.ToLowerInvariant(); if (text2 == null) { return; } } s2.Stop(); // Version 3: ToLower with CultureInfo argument. Stopwatch s3 = Stopwatch.StartNew(); for (int i = 0; i < m; i++) { string text2 = text.ToLower(c); if (text2 == null) { return; } } s3.Stop(); Console.WriteLine(s1.ElapsedMilliseconds); Console.WriteLine(s2.ElapsedMilliseconds); Console.WriteLine(s3.ElapsedMilliseconds);
55 ms ToLower 35 ms ToLowerInvariant 34 ms ToLower(CultureInfo)
IsLower, IsUpper. If a string is already lowercase, we can simply do nothing. We must first scan for validity. This optimization can help if our data is usually already lowercase.
String IsUpper
A summary. We used ToLower and ToUpper to transform the casing of the letters in C# strings. We also used and timed ToLowerInvariant.
Dot Net Perls is a collection of tested code examples. Pages are continually updated to stay current, with code correctness a top priority.
Sam Allen is passionate about computer languages. In the past, his work has been recommended by Apple and Microsoft and he has studied computers at a selective university in the United States.
This page was last updated on Mar 1, 2023 (edit).
Home
Changes
© 2007-2024 Sam Allen.