Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make common ancestor for CsvReaderContext and CsvWriterContext #138

Open
SPC-code opened this issue Feb 4, 2024 · 0 comments
Open

Make common ancestor for CsvReaderContext and CsvWriterContext #138

SPC-code opened this issue Feb 4, 2024 · 0 comments

Comments

@SPC-code
Copy link

SPC-code commented Feb 4, 2024

It is required to create a common reading and writing rules. For example, TSV rule could look like this:

val TSV: CsvContext.()->Unit = {
    charset = "ISO_8859_1"
    quoteChar = '"'
    delimiter = '\t'
    escapeChar = '\\'
}

It could be used as:

csvReader(TSV)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant