string strtext = "你好,我是人,小明明,sad,sree "; string strs[] = strtext.split( ", "); foreach(string s in strs){ system.out.println(s); }