split

string res = "abc, , ,_  ,_,c,b,c   ,abde,r.e";         

char[] chs = new char[] { ' ', '.', '_', ',' };//不想要的分割符

string[] strnew = res.Split(new char[] { ' ', '.', '_', ',' }, StringSplitOptions.RemoveEmptyEntries);

posted @ 2015-02-09 17:14  姚志超  阅读(182)  评论(0编辑  收藏  举报