In this article we try to implement reverse string. String is converted to char array using ToCharArray method afterthat reverse operation will happen. It is one of the interview questions. We can reverse the characters of a string likebelow.
using System.Text;
static void Main(string[] args)
{
try
{
Console.WriteLine("Enter the string to reverse:");
string input = Console.ReadLine();
char[] chars = input.ToCharArray();
Array.Reverse(chars);
string nameReverse = new string(chars);
Console.WriteLine(nameReverse);
}
catch(Exception ex) {
Console.WriteLine(ex.ToString());
}
Console.ReadLine();
}
Output:
Enter the string to reverse:
hello world
dlrow olleh
Post your comments / questions
Recent Article
- 'ionic' is not recognized as an internal or external command
- OSError: cannot open resource - Python
- Python read file line count
- How to Encode & Decode using Base64 in Python?
- Unspecified error-The function is not implemented. Rebuild the library with Windows, GTK+ 2.x or Cocoa support.
- How to generate a Captcha verification code image with Python?
- How to show an image using path python PIL?
- How to remove Background from the images using Python?
Related Article