HypeLab.RxPatternsResolver 0.1.2

dotnet add package HypeLab.RxPatternsResolver --version 0.1.2
NuGet\Install-Package HypeLab.RxPatternsResolver -Version 0.1.2
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="HypeLab.RxPatternsResolver" Version="0.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HypeLab.RxPatternsResolver --version 0.1.2
#r "nuget: HypeLab.RxPatternsResolver, 0.1.2"
#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 HypeLab.RxPatternsResolver as a Cake Addin
#addin nuget:?package=HypeLab.RxPatternsResolver&version=0.1.2

// Install HypeLab.RxPatternsResolver as a Cake Tool
#tool nuget:?package=HypeLab.RxPatternsResolver&version=0.1.2

HypeLab.RxPatternsResolver

Provides a class capable of solve collections of regex patterns given an input string. Also equipped with a default patterns set. Also exposes a method that validateS the email address format and optionally validates domain.

(optional) Register type

based on the version of the framework in use:

builder.Services.AddRegexResolver();
// or
services.AddRegexResolver();

Using with DI


public class Class1
{
	private readonly RegexPatternsResolver _rxResolver;
	
	public Class1(RegexPatternsResolver rxResolver)
	{
		_rxResolver = rxResolver;
	}
}

## Using pattern resolver
```c#
using HypeLab.RxPatternsResolver;
using HypeLab.RxPatternsResolver.Constants;

// ...

const string tst = @"Hi i do tes#TS s@ds a\a  b/b°?mlkm";

RegexPatternsResolver resolver = new();
resolver.AddPattern(RxResolverConst.DefaultBadCharsCollectionPattern1, string.Empty);
resolver.AddPattern(@"[/\\]", " - ");
string output = resolver.ResolveStringWithPatterns(tst);

Console.WriteLine($"Old string:{Environment.NewLine}{tst}" +
    Environment.NewLine + Environment.NewLine +
    $"New string:{Environment.NewLine}{output}");
	
	
// Old string:
// Hi i do tes#TS s@ds a\a  b/b°?mlkm

// New string:
// Hi i do tesTS sds a - a  b - b?mlkm

Email address validation

	RegexPatternsResolver resolver = new();
    EmailCheckerResponse resp = await resolver.IsValidEmailAsync("john.doe@gmail.com", checkDomain: true).ConfigureAwait(false);

    Console.WriteLine($"{resp.Message} - Status: {resp.ResponseStatus}");
    // OUTPUT: john.doe@gmail.com results as a valid email address - Status: EMAIL_VALID

    EmailCheckerResponse resp2 = resolver.IsValidEmail("john.doe@gmail.com");
    Console.WriteLine($"{resp2.Message} - Status: {resp2.ResponseStatus}");
    // OUTPUT: john.doe@gmail.com results as a valid email address - Status: EMAIL_VALID
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 netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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
0.1.2 417 6/10/2022
0.1.1 388 6/10/2022
0.0.7 379 6/7/2022
0.0.6 392 6/6/2022
0.0.5 400 6/5/2022
0.0.4 369 6/4/2022
0.0.3 373 6/1/2022

Changed important code in readme examples