CSVREpublic class CSVRE extends Object
Fields Summary |
---|
public static final String | CSV_PATTERNThe rather involved pattern used to match CSV's consists of three
alternations: the first matches aquoted field, the second unquoted,
the third a null field. | private static Pattern | csvRE |
Constructors Summary |
---|
public CSVRE()Construct a regex-based CSV parser.
csvRE = Pattern.compile(CSV_PATTERN);
|
Methods Summary |
---|
public static void | main(java.lang.String[] argv)
System.out.println(CSV_PATTERN);
new CSVRE().process(new BufferedReader(new InputStreamReader(System.in)));
| public java.util.List | parse(java.lang.String line)Parse one line.
List list = new ArrayList();
Matcher m = csvRE.matcher(line);
// For each field
while (m.find()) {
String match = m.group();
if (match == null)
break;
if (match.endsWith(",")) { // trim trailing ,
match = match.substring(0, match.length() - 1);
}
if (match.startsWith("\"")) { // assume also ends with
match = match.substring(1, match.length() - 1);
}
if (match.length() == 0)
match = null;
list.add(match);
}
return list;
| public void | process(java.io.BufferedReader in)Process one file. Delegates to parse() a line at a time
String line;
// For each line...
while ((line = in.readLine()) != null) {
System.out.println("line = `" + line + "'");
List l = parse(line);
System.out.println("Found " + l.size() + " items.");
for (int i = 0; i < l.size(); i++) {
System.out.print(l.get(i) + ",");
}
System.out.println();
}
|
|