using System;
public class Program
{
public static void Main(string[] args)
{
char[] delimiters = { ' ', ',', '.', ':', '\t' };
string str = "c#\tjava c,c++:go python";
string[] words = str.Split(delimiters);
foreach (var word in words) {
System.Console.WriteLine(word);
}
}
}
/*
run:
c#
java
c
c++
go
python
*/