要在 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# 中執行以下程式碼來拆分和連接字串。
即時示範< /p>
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中文網其他相關文章!