typedb-osi / typedb-loader

TypeDB Loader - Data Migration Tool for TypeDB
https://github.com/typedb-osi/typedb-loader
Apache License 2.0
58 stars 17 forks source link

Add custom separator support for CSV files #75

Open Dip707 opened 7 months ago

Dip707 commented 7 months ago

This pull request adds support for custom separators in CSV files. Previously, only commas and tabs were supported. Now, any character can be used as a separator. This is achieved by adding a new method parseCSV(String line, char delimiter) that takes a delimiter as a parameter. The existing parseCSV(String line) method now calls this new method with a default delimiter of ,.

No files were deleted or modified, only new code was added.