Skip to main content

Reverse string using recursion in c#

Csharp program for Reverse string using recursion. Here more information.

// Include namespace system
using System;
// Reverse string using recursion in Csharp
public class ReverseString
{
	// This is reversing the string elements recursively
	public String reverseText(String text, int location)
	{
		// Base condition to stop the recursion process
		if (location >= 0)
		{
			// Recursive function call
			return text[location] + 
              this.reverseText(text, location - 1);
		}
		// When no character remaining
		return "";
	}
	// This is handling the request process of reverse string elements
	public String reverse(String text)
	{
		// Display given string elements
		Console.WriteLine("Before Text : [" + text + "]");
		return this.reverseText(text, text.Length - 1);
	}
	public static void Main(String[] args)
	{
		var task = new ReverseString();
		var text = "ABCDE";
		text = task.reverse(text);
		// After reverse	
		Console.WriteLine("After Text  : [" + text + "]\n");
		text = task.reverse("654A321");
		// After reverse	
		Console.WriteLine("After Text  : [" + text + "]\n");
	}
}

Output

Before Text : [ABCDE]
After Text  : [EDCBA]

Before Text : [654A321]
After Text  : [123A456]




Comment

Please share your knowledge to improve code and content standard. Also submit your doubts, and test case. We improve by your feedback. We will try to resolve your query as soon as possible.

New Comment