toggle menu
korge-root
5.1.0
common
switch theme
search in API
korge-core
/
korlibs.io.serialization.csv
/
CSV
/
Companion
Companion
object
Companion
Members
Properties
DEFAULT_SEPARATOR
Link copied to clipboard
const
val
DEFAULT_SEPARATOR
:
Char
=
','
Functions
parse
Link copied to clipboard
fun
parse
(
s
:
StrReader
,
separator
:
Char
=
DEFAULT_SEPARATOR
,
headerNames
:
Boolean
=
true
)
:
CSV
fun
parse
(
str
:
String
,
separator
:
Char
=
DEFAULT_SEPARATOR
,
headerNames
:
Boolean
=
true
)
:
CSV
parse
Line
Link copied to clipboard
fun
parseLine
(
line
:
StrReader
,
separator
:
Char
=
DEFAULT_SEPARATOR
)
:
List
<
String
>
fun
parseLine
(
line
:
String
,
separator
:
Char
=
DEFAULT_SEPARATOR
)
:
List
<
String
>
serialize
Line
Link copied to clipboard
fun
serializeLine
(
values
:
List
<
String
>
,
separator
:
Char
=
DEFAULT_SEPARATOR
)
:
String