com.github.tototoshi.csv.CSVParser
See theCSVParser companion class
Attributes
-
Companion
-
class
-
Graph
-
-
Supertypes
-
class Object
trait Matchable
class Any
-
Self type
-
Members list
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