使用分隔符拆分字串

使用 System.String.Split 方法返回一個字串陣列,該陣列包含原始字串的子字串,並根據指定的分隔符進行拆分:

string sentence = "One Two Three Four";
string[] stringArray = sentence.Split(' ');

foreach (string word in stringArray)
{
    Console.WriteLine(word);    
}

輸出:

其中
兩個

四個