public static void output() { String s = "aa,bb,cc dd, ee"; const char comma = ','; const char space = ' '; char[] schar = new char[] { comma, space }; foreach (String s1 in s.Split(schar)) { Console... Read More
posted @ 2010-10-19 11:04 gull Views(229) Comments(0) Diggs(0) Edit