码迷,mamicode.com
首页 > 编程语言 > 详细

java 分割 \t\t

时间:2015-09-20 11:50:56      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:

import java.util.*;
import java.util.regex.*;


public class Split {
    public static void main(String[] args)
    {
        String str = "    a    b    c    d                            ";
        Pattern p = Pattern.compile("\t");
        
        Matcher m = p.matcher(str);
        
        //保存结果数组
        List<String> ret = new ArrayList<String>();
        //临时变量
        String temp = null;
        int index = 0;
        while(m.find())
        {
            int start = m.start();
                        
            temp = str.substring(index, start);
            ret.add(temp);
                        
            index = m.end();
            
        }
        
        System.out.println(ret);
    }
}

 

java 分割 \t\t

标签:

原文地址:http://www.cnblogs.com/feelgood/p/4823047.html

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