Info
Version: | 2.3.0 |
Author(s): | Scott Blomquist |
Last Update: | Saturday, December 23, 2023 |
.NET Fiddle: | Online Example |
Project Url: | https://github.com/sblom/RegExtract |
NuGet Url: | https://www.nuget.org/packages/RegExtract |
Install
Install-Package RegExtract
dotnet add package RegExtract
paket add RegExtract
RegExtract Download (Unzip the "nupkg" after downloading)
Dependencies
.NETFramework 4.0
- System.ValueTuple(>= 4.5.0)
No dependencies.
No dependencies.
Tags
RegExtract takes a string and a regular expression template and deserializes to a provided type.
Works especially well with records and tuples, but can extract to any type that provides either a `static T Parse(string)` method or a single-string constructor (`T(string)`).
See more docs at project page: https://github.com/sblom/RegExtract.