public static void Ges () {
char[] delimiterChars = { ' ', ',', '.', ':', '\t' };
string text = "one\ttwo three:four,five six\tseven";
System.Console.WriteLine("Original text:{0}", text);
string[] words = text.Split(delimiterChars);
System.Console.WriteLine("number of words in text: {0}", words.Length);
foreach (var word in words)
System.Console.WriteLine(word);
public static void Main()