首頁 >後端開發 >C#.Net教程 >C# 中給定字串中的單字反轉

C# 中給定字串中的單字反轉

WBOY
WBOY轉載
2023-09-04 11:53:071299瀏覽

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);
   }
}

以上是C# 中給定字串中的單字反轉的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除