TxtCsvHelper 1.2.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package TxtCsvHelper --version 1.2.7
NuGet\Install-Package TxtCsvHelper -Version 1.2.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TxtCsvHelper" Version="1.2.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TxtCsvHelper --version 1.2.7
#r "nuget: TxtCsvHelper, 1.2.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TxtCsvHelper as a Cake Addin
#addin nuget:?package=TxtCsvHelper&version=1.2.7

// Install TxtCsvHelper as a Cake Tool
#tool nuget:?package=TxtCsvHelper&version=1.2.7

TxtCsvHelper

TxtCsvHelper is a library to assist in parsing CSV, or any other form of delimited files. You can fill models, fill dynamics, or simply get a list of fields by line.

Installation

Use the package manager console to install TxtCsvHelper.

Install-Package TxtCsvHelper -Version 1.2.7

Usage

using TxtCsvHelper;

To return an IEnumerable<T>. Dynamic types must be IEnumerable<dynamic> Parser can take a Stream, StreamReader, ReadStream, FileStream, MemoryStream or a string followed by 3 optional parameters: the delimiter character (will default to a comma). A bool if there is a header line (will default to true). A bool if there are spaces between delimiters and fields (will default to false). Deserialize takes a type.

using(Parser pars = new Parser(streamvar, delimiter: ',', hasHeader: true, hasSpaces: false))
{
	var models = pars.Deserialize<Person>();
}

To return an IEnumerable<string> for each line, call using StreamReader. If fields may have a line break use ReadStream instead of StreamReader. ReadStream is called with the exact syntax as StreamReader. Parser in this case takes 3 optional parameters: the delimiter character (will default to a comma). A bool if there is a header line (will default to true). A bool if there are spaces between delimiters and fields (will default to false). SplitLine takes a Line of delimited fields. Followed by 2 optional parameters: the delimiter character (will default to a comma). A bool if there are spaces between delimiters and fields (will default to false)

using (StreamReader sr = new StreamReader(postedFile.OpenReadStream()))
using(Parser pars = new Parser())
{
	while(sr.Peek() >= 0)
		var substrings = pars.SplitLine(sr.ReadLine());
		//do something with the strings
}

If no header exists, you may declare the index of the field in the model with [SetIndex()] simply put the index starting with 0 inside the parentheses If a header exists but the names do not match your model, you may declare the header name with [HeaderName()] simply put the column name in the parentheses

public class Person
{
	[SetIndex(1)]
	[HeaderName(Last)]
        public string LastName { get; set; }
        [SetIndex(0)]
        public string FirstName { get; set; }
        [SetIndex(2)]
        public string MiddleName { get; set; }
        [SetIndex(3)]
        public int Age { get; set; }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.3 3,025 6/24/2022
1.3.2 433 6/20/2022
1.3.1 638 8/2/2021
1.3.0 382 8/1/2021
1.2.9 353 7/12/2021
1.2.8 377 7/1/2021
1.2.7 365 6/21/2021
1.2.6 316 6/21/2021
1.2.5 342 5/17/2021
1.2.4 342 5/15/2021
1.2.3 335 5/11/2021
1.2.2 313 5/10/2021
1.2.1 302 5/9/2021
1.2.0 323 5/9/2021
1.1.9 322 5/9/2021
1.1.8 394 5/8/2021
1.1.7 324 5/8/2021
1.1.6 321 5/8/2021
1.1.5 382 5/7/2021
1.1.4 382 5/7/2021
1.1.3 398 5/7/2021
1.1.2 368 5/6/2021
1.1.1 336 5/6/2021
1.1.0 349 5/6/2021
1.0.1 345 5/6/2021
1.0.0 338 5/6/2021