DSV (Delimiter-Separated Values) Parsing for .NET
$ dotnet add package DsvDsv is a .NET Standard Library for parsing delimiter-separated values, like CSV (comma-separated values) data. It has a functional design in that most data structures are immutable and there is no shared state.
The goal of the project is to support common formats. It is a non-goal to try and support malformed cases of a DSV format and recover from errors.
Features:
"See the parser test cases for how DSV data is handled.