CSVParser

object CSVParser
Companion
class
class Object
trait Matchable
class Any

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))