码迷,mamicode.com
首页 > 其他好文 > 详细

字符串分割方法

时间:2014-06-18 16:01:29      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:class   blog   java   tar   string   art   

 

    public static String[] split(String str, String limit)
    {
        List<String> result = new ArrayList<String>();

        char[] chars = limit.toCharArray();
        int length = str.length();
        int slice = chars.length - 1;

        int match = 0, start = 0, count = 1;

        for (int i = 0; i < length; i++) {
            char c = str.charAt(i);
            if (c == chars[match]) {
                match++;
                if (match == chars.length) {
                    result.add(str.substring(start, i - slice));
                    start = i + 1;
                    count++;
                    match = 0;
                }
            }
            else {
                if (match != 0) match = (c == chars[0]) ? 1 : 0;
            }
        }

        result.add(str.substring(start, length));
        return result.toArray(new String[count]);
    }

  

字符串分割方法,布布扣,bubuko.com

字符串分割方法

标签:class   blog   java   tar   string   art   

原文地址:http://www.cnblogs.com/rilley/p/3791233.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!