首页 > 代码库 > Java split方法源码分析
Java split方法源码分析
Java split方法源码分析
1 public String[] split(CharSequence input [, int limit]) { 2 int index = 0; // 指针 3 boolean matchLimited = limit > 0; // 是否限制匹配个数 4 ArrayList<String> matchList = new ArrayList<String>(); // 匹配结果队列 5 Matcher m = matcher(input); // 待切割字符(串)匹配对象,pattern去哪了? 6 7 // Add segments before each match found 8 while(m.find()) { 9 if (!matchLimited || matchList.size() < limit - 1) { // 如果不限制匹配个数 或者 当前结果列表的大小小于limit-110 String match = input.subSequence(index, m.start()).toString(); // 取子串,(指针位置,分隔串所在的首位)11 matchList.add(match); // 添加进结果集12 index = m.end(); // 移动指针13 } else if (matchList.size() == limit - 1) { // last one,即还剩最后一个名额了14 String match = input.subSequence(index, input.length()).toString(); // 最后一个元素从指针取到字符串结尾15 matchList.add(match);16 index = m.end();17 }18 }19 20 // If no match was found, return this21 if (index == 0) // 即没有切分到的意思吧,返回整一串22 return new String[] {input.toString()};23 24 // Add remaining segment25 if (!matchLimited || matchList.size() < limit) // 如果不限制匹配个数 或者 结果集大小小于限制个数26 // 这个时候,后面已无匹配,如__1_1___,取最后一个1的后面部分27 matchList.add(input.subSequence(index, input.length()).toString()); // 最后一个元素从指针取到字符串结尾28 29 // Construct result30 int resultSize = matchList.size();31 if (limit == 0)32 while (resultSize > 0 && matchList.get(resultSize-1).equals("")) // 如果结果集最后的元素是"",一个一个地删除它们33 resultSize--;34 String[] result = new String[resultSize];35 return matchList.subList(0, resultSize).toArray(result);36 }
特别地,最后的while循环里,把结果集的位于最后的""元素删除了,有人问过“boo:and:foo”用“o”来分割,为什么结果是{“b”,"",":and:f"},而不是{"b","",":and:f","",""}的原因所在了。
Java split方法源码分析
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。