使用分隔符拆分字符串

使用 System.String.Split 方法返回一个字符串数组,该数组包含原始字符串的子字符串,并根据指定的分隔符进行拆分:

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

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

输出:

其中
两个

四个