CsvParser
ceesvee.CsvParser$
object CsvParser
Attributes
- Graph
- Supertypes
- class Objecttrait Matchableclass Any
- Self type
- CsvParser.type
Members list
Concise view
Type members
Value members
Concrete methods
Parses the given strings into CSV fields.
Parses the given strings into CSV fields.
The given strings must contain new lines as this method splits on them.
Blank lines and lines starting with '#' are ignored.
Attributes
Parse a line into a collection of CSV fields.
Parse a line into a collection of CSV fields.
Attributes
Splits the given strings into CSV lines by splitting on either '\r\n' and '\n'.
Splits the given strings into CSV lines by splitting on either '\r\n' and '\n'.
Both '"' and '' are valid escapes for nested double quotes.
Attributes
def splitStrings[C <: (Iterable)](strings: C[String], state: State)(implicit f: Factory[String, C[String]]): (State, C[String])