WizardWrx.AnyCSV 7.1.135.32875

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package WizardWrx.AnyCSV --version 7.1.135.32875
                    
NuGet\Install-Package WizardWrx.AnyCSV -Version 7.1.135.32875
                    
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="WizardWrx.AnyCSV" Version="7.1.135.32875" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WizardWrx.AnyCSV" Version="7.1.135.32875" />
                    
Directory.Packages.props
<PackageReference Include="WizardWrx.AnyCSV" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add WizardWrx.AnyCSV --version 7.1.135.32875
                    
#r "nuget: WizardWrx.AnyCSV, 7.1.135.32875"
                    
#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.
#:package WizardWrx.AnyCSV@7.1.135.32875
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=WizardWrx.AnyCSV&version=7.1.135.32875
                    
Install as a Cake Addin
#tool nuget:?package=WizardWrx.AnyCSV&version=7.1.135.32875
                    
Install as a Cake Tool

AnyCSV - Process ANY delimited string.

Product Compatible and additional computed target framework versions.
.NET Framework net20 is compatible.  net35 was computed.  net40 was computed.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on WizardWrx.AnyCSV:

Package Downloads
WizardWrx.FormatStringEngine

Composite Format String Processing

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
9.0.157 202 3/2/2024
7.2.145 61,160 8/12/2019
7.1.135.32875 3,101 7/3/2019
7.1.131.32279 628 7/3/2019
7.0.120.30587 6,573 9/4/2018
4.0.106.27625 1,271 12/27/2016

Unlike most CSV strings, these frequently come with "just in time" guard characters that enclose the command that they protect, and little else. Since I found nothing on the Web that met my need, and I had to roll my own, I gave it all the features that I expected of a robust delimited string parsing engine, such as the ability to use any character as the delimiter, and any other character as the guard character, to keep or discard the guard character, and, finally, to make absolutely no assumptions about the source of the input strings or the destination of the output strings. In other words, this is a robust delimited string parser, period. Both acquiring input strings and storing the returned string arrays are out of scope. This version has COM Interop support, so that it can be incorporated into VBA projects. This minor upgrade corrects an oversight arising from the last revision of the ToString override on the Parser object.