//the Split() method already does that string S = "this is a test string"; string[] splitedString = S.Split(); // {"this", "is", "a", "test", "string"}