Kotlin / dataframe

Structured data processing in Kotlin
https://kotlin.github.io/dataframe/overview.html
Apache License 2.0
761 stars 48 forks source link

Add delimiter parameter to readDelimStr #743

Closed koperagen closed 1 week ago

github-actions[bot] commented 1 week ago

Generated sources will be updated after merging this PR. Please inspect the changes in here.

dave08 commented 1 week ago

Little comment, maybe since this is a function to especially read delimeters, it might be useful to have an override that takes in a Regex as a delimiter... this might be used for command line output tables that are usually space separated but sometimes inside a column value there might be a single space, so I need to use "\s\s+" to correctly read it in.

Jolanrensen commented 1 week ago

@dave08 sounds like a good idea :) could you make an issue for that?

dave08 commented 1 week ago

Just opened one: https://github.com/Kotlin/dataframe/issues/746