在 C# 中反转给定字符串中的单词
假设以下字符串如下 -
Welcome
反转字符串后,单词应如下所示 -
emocleW
使用**reverse()** 方法并尝试以下代码来反转字符串中的单词 -
示例
using System; using System.Linq; class Demo { static void Main() { string str = "Welcome"; // reverse the string string res = string.Join(" ", str.Split(' ').Select(s => new String(s.Reverse().ToArray()))); Console.WriteLine(res); } }
广告