RegExtract icon indicating copy to clipboard operation
RegExtract copied to clipboard

Clean & simple idiomatic C# RegEx-based line parser that emits strongly typed results.

Results 7 RegExtract issues
Sort by recently updated
recently updated
newest added

netcoreapp was [replaced](https://learn.microsoft.com/en-us/dotnet/standard/frameworks#supported-target-frameworks) with net since v5.

```var (x,y,z) = "".Extract(@"")``` is pretty handy for common (single-line) use cases. The docs should explicitly teach this.

This PR adds Try-prefixed methods, including: `TryConstruct`, `TryExecute`, `TryExtract`.

To support the use case(s) raised in discussion #13, let's add an `IgnoreGroupNames` flag (or maybe `BindNamedGroupsPositionally`?) flag to `RegExtractOptions`.

At the very least, an extraction plan could have already prepared type info for each step of the plan.