EasyCsv 1.0.15
See the version list below for details.
dotnet add package EasyCsv --version 1.0.15
NuGet\Install-Package EasyCsv -Version 1.0.15
<PackageReference Include="EasyCsv" Version="1.0.15" />
paket add EasyCsv --version 1.0.15
#r "nuget: EasyCsv, 1.0.15"
// Install EasyCsv as a Cake Addin #addin nuget:?package=EasyCsv&version=1.0.15 // Install EasyCsv as a Cake Tool #tool nuget:?package=EasyCsv&version=1.0.15
EasyCsv Nuget
EasyCsv is a simple and efficient .NET library for handling CSV files in your projects. With a fluent user-friendly API, it allows you to easily read, write, and manipulate CSV files with a minimal amount of code.
Features
- Read and write CSV files
- Support for larger number of types: byte[], string, Stream, TextReader, Objects<T>, IBrowserFile, IFormFile
- Fluent API for method chaining
- Perform basic operations on CSV files, such as adding or removing columns, filtering rows, sorting data, and replacing values in a column
- Support for dependency injection
Installation
Install the EasyCsv package via NuGet:
NuGet\Install-Package EasyCsv
Usage
Creating an IEasyCsv and reading a CSV file
The reading of the csv is automatically done when you use the EasyCsvFactory
or EasyCsvFileFactory
to create your IEasyCsv
. To recalculate ContentBytes
and ContentStr
, call easyCsv.CalculateContent()
. WARNING. All From(Type)
methods will return null
if something goes wrong or the csv contains 0 rows.
IBrowserFile file = files[0];
var strCsv = "header1,header2\nheader1value,header2value";
var easyCsv = await EasyCsvFileFactory.FromIBrowserFileAsync(file);
var easyCsv2 = await EasyCsvFactory.FromStringAsync();
// You can access the ContentStr, ContentBytes, and create C# Objects using GetRecords<T> at this point
Manipulate CSV data
EasyCsv provides a set of methods for manipulating CSV data. Some examples include:
No matter what you manipulate, don't forget to call easyCsv.CalculateContent()
after you are done doing your manipulations. easyCsv.CsvContent
is the only content that is always up to date. ContentStr
and ContentBytes
are calculated when you create an IEasyCsv
, after that they are only recalculated when easyCsv.CalculateContent()
is called.
Remove a column:
var easyCsv = await EasyCsvFactory.FromStreamAsync(fileStream)
easyCsv.RemoveColumn("header2");
Add column with default value
easyCsv.AddColumn("column name", "value given to all rows in column/header field", upsert: true);
Replace header row
You can replice all the headers in the header row of this CSV. The number of headers in the new row must match the number of headers current CsvContent or no operation will be performed
List<string> newHeaderRow = new () { "header1", "header2", "header3" }
easyCsv.ReplaceHeaderRow(newHeaderRow);
Filter rows:
This would remove any row where the value of header1 is less than 10. Would throw an error if any value couldn't be converted to an int.
easyCsv.FilterRows(row => (int)row["header1"] > 10);
Map values in a column:
// before "header1,header2\nOldValue,OldValue";
var valueMapping = new Dictionary<object, object>
{
{ "OldValue", "NewValue" }
};
easyCsv.MapValuesInColumn("header1", valueMapping);
// after "header1,header2\nNewValue,OldValue";
Sort data by column:
The easiest way is to sort by a column to give them in alphabetical order based on that column, but you can also provide a Func<IDictionary<string, object>, TKey>. to sort like this csvService.SortCsv(row => row["FieldName"].ToString().Length, ascending: false);
. This would sort rows by the lengths of fields in column "FieldName"
easyCsv.SortCsv("header1", ascending: true);
Read directly to objects
Do whatever operations you need to the csv, then read it directly into objects
List<Person> people = easyCsv.GetRecordsAsync<Person>();
Chain Method Calls Fluently
// before header1,header2
// value1,value2"
var newRow2Columns = new Dictionary<string, object>()
{
{"header1", "other header1 value"},
{"header2", "header2 value"}
};
var newRow3Columns = new Dictionary<string, object>()
{
{"header1", "header1 value"},
{"header2", "header2 value"},
{"header3", "header3 value"}
};
easyCsv.InsertRow(newRow)
.AddColumn("header3", "value given to all rows herein header3 column")
.InsertRow(newRow3Columns)
.FilterRows(row => (string)row["header1"] != "other header1 value")
.CalculateFileContent();
// after header1,header2,header3
value1,value2,value given to all rows here in header3 column
header1 value, header2 value, header3 value
// Not the data in newRow2Columns because it got filtered
For more methods and usage examples, please refer to the EasyCsv documentation and source code.
Contributing
I gladly welcome contributions to EasyCsv! If you find a bug or have a feature request, please open an issue on the project's GitHub repository. If you would like to contribute code, please submit a pull request.
Acknowledgements
This library makes use of the following third-party dependencies:
CsvHelper
EasyCsv uses CsvHelper to read and write CSV files. CsvHelper is licensed under the Microsoft Public License (Ms-PL). We would like to thank the authors and contributors of CsvHelper for their work on this excellent library.
Known Issues and Limitations
License EasyCsv is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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 is compatible. |
.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. |
-
.NETStandard 2.0
- EasyCsv.Core (>= 1.0.11)
- EasyCsv.Files (>= 1.0.11)
-
.NETStandard 2.1
- EasyCsv.Core (>= 1.0.11)
- EasyCsv.Files (>= 1.0.11)
-
net6.0
- EasyCsv.Core (>= 1.0.11)
- EasyCsv.Files (>= 1.0.11)
-
net7.0
- EasyCsv.Core (>= 1.0.11)
- EasyCsv.Files (>= 1.0.11)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on EasyCsv:
Package | Downloads |
---|---|
EasyCsv.Components
A collection of blazor components for reading and mapping csvs. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.1 | 106 | 10/2/2024 |
2.0.0-beta8.2 | 67 | 6/4/2024 |
2.0.0-beta8.1 | 50 | 5/30/2024 |
2.0.0-beta8 | 72 | 5/30/2024 |
2.0.0-beta7 | 91 | 5/25/2024 |
2.0.0-beta6.3 | 60 | 5/20/2024 |
2.0.0-beta6.2 | 58 | 5/16/2024 |
2.0.0-beta6 | 84 | 5/12/2024 |
2.0.0-beta5 | 86 | 5/3/2024 |
2.0.0-beta4 | 43 | 5/3/2024 |
2.0.0-beta3 | 49 | 5/2/2024 |
2.0.0-beta1 | 98 | 4/29/2024 |
1.0.29 | 301 | 3/6/2024 |
1.0.28 | 179 | 2/1/2024 |
1.0.27 | 122 | 1/26/2024 |
1.0.26 | 208 | 12/21/2023 |
1.0.25 | 156 | 12/3/2023 |
1.0.24 | 89 | 12/3/2023 |
1.0.23 | 153 | 8/10/2023 |
1.0.22 | 119 | 8/7/2023 |
1.0.21 | 153 | 4/26/2023 |
1.0.20 | 132 | 4/26/2023 |
1.0.19 | 139 | 4/26/2023 |
1.0.18 | 170 | 4/7/2023 |
1.0.17 | 148 | 4/7/2023 |
1.0.16 | 156 | 4/7/2023 |
1.0.15 | 181 | 3/31/2023 |
1.0.14 | 159 | 3/31/2023 |
1.0.13 | 158 | 3/31/2023 |
1.0.12 | 156 | 3/30/2023 |
1.0.11 | 160 | 3/29/2023 |
1.0.10 | 162 | 3/29/2023 |
1.0.9 | 181 | 3/29/2023 |
1.0.8 | 181 | 3/29/2023 |
1.0.7 | 175 | 3/29/2023 |
1.0.6 | 187 | 3/27/2023 |
1.0.5 | 177 | 3/27/2023 |
1.0.4 | 174 | 3/27/2023 |
1.0.3 | 182 | 3/27/2023 |
1.0.2 | 181 | 3/27/2023 |
1.0.1 | 184 | 3/27/2023 |
1.0.0 | 185 | 3/27/2023 |