MCPcopy Index your code
hub / github.com/benfry/processing4 / splitLineCSV

Method splitLineCSV

core/src/processing/data/Table.java:765–770  ·  view source on GitHub ↗

Parse a line of text as comma-separated values, returning each value as one entry in an array of String objects. Remove quotes from entries that begin and end with them, and convert 'escaped' quotes to actual quotes. @param line line of text to be parsed @return an array of the individual values for

(String line, BufferedReader reader)

Source from the content-addressed store, hash-verified

763 * @return an array of the individual values formerly separated by commas
764 */
765 protected String[] splitLineCSV(String line, BufferedReader reader) throws IOException {
766 if (csl == null) {
767 csl = new CommaSeparatedLine();
768 }
769 return csl.handle(line, reader);
770 }
771
772
773 /**

Callers 2

parseBasicMethod · 0.95
convertBasicMethod · 0.95

Calls 1

handleMethod · 0.45

Tested by

no test coverage detected