string[] text = { "Today is 2018-06-06", "weather is sunny", "I am happy" };
var tokens = text.Select(s => s.Split(' ')); var tokens2 = text.SelectMany(s => s.Split(' '));