CSVParser

com.github.tototoshi.csv.CSVParser
See theCSVParser companion class
object CSVParser

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
CSVParser.type

Members list

Value members

Concrete methods

def parse(input: String, escapeChar: Char, delimiter: Char, quoteChar: Char): Option[List[String]]
scala> com.github.tototoshi.csv.CSVParser.parse("a,b,c", '\\', ',', '"')
res0: Option[List[String]] = Some(List(a, b, c))

scala> com.github.tototoshi.csv.CSVParser.parse("\"a\",\"b\",\"c\"", '\\', ',', '"')
res1: Option[List[String]] = Some(List(a, b, c))

Attributes