博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
正则表达式划分CSV
阅读量:5224 次
发布时间:2019-06-14

本文共 1026 字,大约阅读时间需要 3 分钟。

《精通正则表达式》 第401页
    public static List
splitCSV(String txt) {
        String reg = "
\\G(?:^|,)(?:\"([^\"]*+(?:\"\"[^\"]*+)*+)\"|([^\",]*+))";
      // 即 
\G(?:^|,)(?:"([^"]*+(?:""[^"]*+)*+)"|([^",]*+))
        Matcher matcherMain = Pattern.compile(reg).matcher("");
        Matcher matcherQuoto = Pattern.compile("
\"\"").matcher("");
        matcherMain.reset(txt);
        System.out.println(matcherMain.groupCount());
        List strList = new ArrayList();
        while (matcherMain.find()) {
            String field;
            if (matcherMain.start(2) >= 0) {
                field = matcherMain.group(2);
            } else {
                field = matcherQuoto.reset(matcherMain.group(1)).replaceAll("\"");
            }
            strList.add(field);
        }
        return strList;
    }
  //测试
  public static void
main(String[] args) {
        String txt = "
The Thousand,10000, 2700 ,,\"10,000\",\"It's \"\"10 Grand\"\",baby\",10K ";
         
//即 
The Thousand,10000, 2700 ,,"10,000","It's ""10 Grand"",baby",10K 
        List splits = splitCSV(txt);
        for (String s : splits) {
            System.out.println(s);
        }
    }
打印:
2
The Thousand
10000
 2700 
10,000
It's "10 Grand",baby
10K 

转载于:https://www.cnblogs.com/leeeee/p/7276544.html

你可能感兴趣的文章
新的开始
查看>>
java Facade模式
查看>>
NYOJ 120校园网络(有向图的强连通分量)(Kosaraju算法)
查看>>
SpringAop与AspectJ
查看>>
Leetcode 226: Invert Binary Tree
查看>>
http站点转https站点教程
查看>>
解决miner.start() 返回null
查看>>
关于MFC中窗口的销毁
查看>>
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>