######### CSVReader ######### CSVReader makes it easy to parse out raw strings that contain CSV-formatted data. CSV parsing can be deceptively difficult once you start getting into edge cases around commas, quotes, line breaks, etc, so this is a handy class to have around when you're reading CSV data from :doc:`/concepts/external-systems`. The source code for this class is an adaptation of an open-source library from `Marty Chang`_. .. _Marty Chang: https://github.com/martyychang/sfdc-csv/ Definition ---------- .. code-block:: java global static List> readCSVData(String rawData); // defaults to using \n as the line ending character global static List> readCSVData(String rawData, String lineEnding); Example Usage ------------- .. code-block:: java // parse the response List> rows = valence.CSVReader.readCSVData(apiResponseBody); // extract headers from first line of CSV data List headers = rows[0]; List records = new List(); // iterate over response records and create RecordInFlight instances from them for(Integer i = 1, j = rows.size(); i < j; i++) { // deliberately start with i = 1 to skip the header row Map properties = new Map(); for(Integer k = 0, l = headers.size(); k < l; k++) { properties.put(headers[k], rows[i][k]); } records.add(new valence.RecordInFlight(properties)); }