C# Console

Reverse a Given String Word by Word in C#

In this example, we’ll learn How to reverse a given string word by word instead of letters using C#.

Create a method reverse Words that takes char array as an input and for each and every character until the empty space is not reached reverse the word. At the last step reverse the entire string from length 0 to n-1 length. In the first step the string “This is my book” will be turned into “koob ym si siht”. At the end of the second step the string words will be reversed to “book my is This”

C# Code:

Output

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.