Skip to main content

Different ways of String Reversal in C#

As you may be aware C#'s string class don’t have a Reverse() function by default, so let’s discuss different ways to reverse a given string:

Using manual reversal way:
The traditional way is to reverse a string by manually looping through it character by character and creating a new string.

string inputStr = "This is test string";
string outputStr = "";
for (int i = inputStr.Length - 1; i >= 0; i--)
{
    outputStr += inputStr[i];
}

One thing to remember though, if you are using this approach to reverse a large string then you should use StringBuilder to create output string instead of string because a string instance is immutable and you cannot change it after it was created. Any operation that appears to change the string instead returns a new instance.

Using Array.Reverse():
The second approach we can reverse a string is with the inbuilt Array.Reverse() method of Array class.

string inputStr = "This is test string";
char[] charArray = inputStr.ToCharArray();
Array.Reverse(charArray);

string outputStr = new string(charArray);

Here first of all we convert the given string to a character array and then we reverse that array using in-built method, and in last we construct a new string from the reversed array.

Reverse using LINQ:
LINQ allows us to shorten string reversal into a one line of code. In this scenario first of all the string is converted to a char array as in second approach. Array implements IEnumerable, so we can use LINQ's Reverse() method on it. After that with a call to ToArray() the resulting IEnumerable is then again converted to a character array, which is then used in the string constructor.

string inputStr = "This is test string";
string outputStr = new string(inputStr.ToCharArray().Reverse().ToArray());

Create extension method for reusability:
If we need string reversal on several places in our program or application, in such cases we can create an extension method on string and can use this wherever needed.

First of all create an extension method under class StringExtensions.

static class StringExtensions
{
    public static string ReverseString(this string inputStr)
    {
        return new string(inputStr.ToCharArray().Reverse().ToArray());
    }
}

Once extension method is ready to use then you can use it like any other string extension methods i.e. ToString(), ToUpper() etc.

string inputStr = "This is test string";
Console.WriteLine(inputStr.ReverseString());

Comments

Popular posts from this blog

Error 405 : ASP.NET Core Web API PUT and DELETE Methods not allowed

Recently, while working with .Net core API I came across the issue of “Error 405 — Methods not Allowed” After some research, I found out that both GET and POST requests working fine but neither PUT nor DELETE requests working. Another thing is that the PUT and DELETE request was also working fine on my local machine but failed when we host on our Azure server. When I explored the issue on the web it led me to the conclusion that WebDAVModule seems to set PUT and DELETE request methods disabled by default and due to that PUT and DELETE throw 405 errors. To make the PUT and DELETE requests work, we need to override the WebDAVModule setting in web.config file by adding the below settings under “ system.webServer ”. < system.webServer >   < modules runAllManagedModulesForAllRequests = " false " >     < remove name = " WebDAVModule " />   </ modules > </ system.webServer > There may be 2 web.config files in y...

C#: Merging Excel cells with NPOI HSSFWorkbook

In this post we’ll see how to merge the two or more cell with each other while creating the excel sheet using NPOI . Mentioned below is code to merge multiple cells, in this example we are merging first cell to fifth cell of first row (you can adjust row or cell range by passing particular parameters in CellRangeAddress). //Created new Workbook var hwb = new NPOI.HSSF.UserModel. HSSFWorkbook (); //Create worksheet with name. var sheet = hwb.CreateSheet( "new sheet" ); //Create row and cell. var row = sheet.CreateRow(0); var cell = row.CreateCell(0); ; //Set text inside cell cell.SetCellValue( "This is Merged cell" ); cell.CellStyle.WrapText = true ; //define cell range address // parameters: -> first row to last and first cell to last cell var cra = new NPOI.SS.Util. CellRangeAddress (0, 0, 0, 4); //Add merged region to sheet. sheet.AddMergedRegion(cra); Hope this solution helps you J

How to set Swagger as the default start page for API hosted on the Azure web app?

I created an Asp.Net Core 2.x Web API and configured Swagger on it, below is the code added in Configure method under Startup.cs file, for full swagger configuration, check here //Add swagger configuration app.UseSwagger(); app.UseSwaggerUI(c => {     c.SwaggerEndpoint( "../swagger/v1/swagger.json" , "Test API V1" ); }); On my local machine when I run the API it is automatically redirected to the Swagger page. However, when I hosted this API as an Azure web app it is not redirecting directly to the Swagger and to access the swagger, I had to append /swagger in the URL, for example, https://testapi.azurewebsites.net/swagger/ Solution: Set RoutePrefix to string.Empty under app.UseSwaggerUI like below: app.UseSwaggerUI(c => {     c.SwaggerEndpoint( "../swagger/v1/swagger.json" , "Test API V1" );      c.RoutePrefix = string .Empty; // Set Swagger UI at apps root }); And that’s it, now when you b...