本帖最后由 许庭洲 于 2013-3-12 07:50 编辑
1. string[] Split(params char[] separator):将字符串按照指定的分割符分割为字符串数组;
2. string Split(char[] separator,StringSplitOptions options)将字符串按照指定的char分割为字符串数组(options取RemoveEmptyEntires的时候移除结果中的空白字符串);
3。string[] Split(string[] separator, StringSplitOptions option)将字符串按照指定的string 分割为字符串数组。 |