2015-09-17 107 views
-3

我有一個字符串,它是一個句子。例如:C# - 用多個字符串之間的空格拆分字符串

string sentence = "Example sentence"; 

如何將此字符串分成多個字符串?所以:

string one = "Example"; 
string two = "sentence"; 
+4

你聽說過String.Split'的'?你得到一個包含多個字符串的數組。您可以通過索引訪問它們或使用循環來枚舉它們。 –

回答

0

這將工作

string sentence = "Example sentence"; 
string [] sentenses = sentence.Split(' '); 

string one = sentenses[0]; 
string two = sentenses[1]; 
0

這是一種欺騙,但你正在尋找string.Split(https://msdn.microsoft.com/en-us/library/b873y76a(v=vs.110).aspx) -

public class Program 
{ 
    public static void Main(string[] args) 
    { 
     string sentence = "Example sentence"; 
     string[] array = sentence.Split(' '); 

     foreach (string val in array.Where(i => !string.IsNullOrEmpty(i))) 
     { 
      Console.WriteLine(val); 
     } 
    } 
} 

的。凡確保空字符串被跳過。