假設以下是字串 -
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); } }
以上是C# 中給定字串中的單字反轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!