Home
Map
String ReverseReverse the order of the characters in a string. Use ToCharArray and Array.Reverse.
C#
This page was last reviewed on Mar 14, 2023.
Reverse string. A string in C# can be reversed. A reversal method can be implemented in several ways. Some ways are faster than others.
Method notes. Some methods use more lines of code—they are more complex to understand. We review and time some string reversal methods in .NET.
An example. This solution requires just 3 lines of code. The method shown here is based on ToCharArray, which can help performance. It is static because it stores no state.
String ToCharArray
Info ReverseString receives a string parameter—this is the string in which you wish to reverse the order of the letters.
Note The method calls Array.Reverse to modify the order of the chars. Reverse cannot be used on a string directly.
Array.Reverse
Note 2 The method copies to an array using ToCharArray. It returns a string with the new string constructor.
char Array
String Constructor
using System; class Program { static string ReverseString(string s) { // Convert to char array, then call Array.Reverse. // ... Finally use string constructor on array. char[] array = s.ToCharArray(); Array.Reverse(array); return new string(array); } static void Main() { Console.WriteLine(ReverseString("bird")); Console.WriteLine(ReverseString("cat")); } }
drib tac
Benchmark, string reversal. Suppose your program must reverse strings millions or billions of times. Can we use some simple logic to optimize string reversal? Here we test 2 methods.
Version 1 This method uses ToCharArray and Array.Reverse. It is short and simple, probably good enough for most programs.
Version 2 This version allocates an empty char array, and iterates backwards through the string and assigns elements in the array.
Result The iterative method ReverseStringDirect is faster—nearly twice as fast. It does not use Array.Reverse or ToCharArray.
using System; using System.Diagnostics; class Program { public static string ReverseString(string s) { char[] array = s.ToCharArray(); Array.Reverse(array); return new string(array); } public static string ReverseStringDirect(string s) { char[] array = new char[s.Length]; int forward = 0; for (int i = s.Length - 1; i >= 0; i--) { array[forward++] = s[i]; } return new string(array); } static void Main() { int sum = 0; const int _max = 10000000; Console.WriteLine(ReverseString("test")); Console.WriteLine(ReverseStringDirect("test")); // Version 1: reverse with ToCharArray. var s1 = Stopwatch.StartNew(); for (int i = 0; i < _max; i++) { sum += ReverseString("programmingisfun").Length; } s1.Stop(); // Version 2: reverse with iteration. var s2 = Stopwatch.StartNew(); for (int i = 0; i < _max; i++) { sum += ReverseStringDirect("programmingisfun").Length; } s2.Stop(); Console.WriteLine(s1.Elapsed.TotalMilliseconds); Console.WriteLine(s2.Elapsed.TotalMilliseconds); } }
tset tset 597.2342 ms ReverseString 392.2862 ms ReverseStringDirect
Performance notes. For optimal performance, use caching. Also consider just iterating through a string backwards instead of ever creating a string.
A summary. We saw a method that receives a string and returns the string with its characters in the reverse order. It is one of many examples of using char arrays for string manipulation.
Reverse Words
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 14, 2023 (edit).
Home
Changes
© 2007-2024 Sam Allen.