Skip to content

Instantly share code, notes, and snippets.

View colinkenworthy's full-sized avatar

Colin Kenworthy colinkenworthy

View GitHub Profile
@nicocrm
nicocrm / gist:858086
Created March 7, 2011 04:50
SalesForce Apex CSV Parser
/**
* Used to read a delimited file.
*/
public class SSSCsvReader {
private String delim = ',';
// the input data
private String[] buffer;
public SSSCsvReader(String data){
this.buffer = data.split('\n');