第一種
char[] delimiterChars = { ' ' , ',' , '.' , ':' , '\t' };
string text = "one two,three.four:five \ seven";
string[] words = text.Split(delimiterChars);
char[] delimiterChars = { ' ' , ',' , '.' , ':' , '\t' };
string text = "one two,three.four:five \ seven";
string[] words = text.Split(delimiterChars);
