Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
C# program to Reverse words in a string
Let’s say the following is the string −
Hello World
After reversing the string, the words should be visible like −
olleH dlroW
Example
Use the reverse() method and try the following code to reverse words in a string.
using System;
using System.Linq;
class Demo {
static void Main() {
// original string
string str = "Hello World";
// reverse the string
string res = string.Join(" ", str.Split(' ').Select(s => new String(s.Reverse().ToArray())));
Console.WriteLine(res);
}
}
Output
olleH dlroW
Advertisements
