首頁 >後端開發 >C#.Net教程 >C# 程式來分割和連接字串

C# 程式來分割和連接字串

王林
王林轉載
2023-08-28 23:13:101229瀏覽

C# 程序来分割和连接字符串

要在 C# 中拆分和連接字串,請使用 split() 和 join() 方法。假設以下是我們的字串-

string str = "This is our Demo String";

要分割字串,我們將使用split() 方法-

var arr = str.Split(' ');

現在要連接,請使用join() 方法並連接字串的其餘部分。在這裡,我們使用skip()方法跳過了字串的一部分 -

string rest = string.Join(" ", arr.Skip(1));

範例

#您可以嘗試在 C# 中執行以下程式碼來拆分和連接字串。

即時示範

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Demo {
   class MyApplication {
      static void Main(string[] args) {
         string str = "This is our Demo String";
         var arr = str.Split(' ');
         // skips the first element and joins rest of the array
         string rest = string.Join(" ", arr.Skip(1));
         Console.WriteLine(rest);
      }
   }
}

輸出

is our Demo String

以上是C# 程式來分割和連接字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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