HypeLab.RxPatternsResolver 0.3.1

dotnet add package HypeLab.RxPatternsResolver --version 0.3.1                
NuGet\Install-Package HypeLab.RxPatternsResolver -Version 0.3.1                
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.3.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HypeLab.RxPatternsResolver --version 0.3.1                
#r "nuget: HypeLab.RxPatternsResolver, 0.3.1"                
#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.3.1

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

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 methods that validate the email address format and optionally validates domain; also checks if an email address exists.

(Optional) Register type

On startup:

builder.Services.AddRegexResolver();

Using with DI

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

Pattern resolver usage example

using HypeLab.RxPatternsResolver;
using HypeLab.RxPatternsResolver.Constants;

// ...

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

_rxResolver.AddPattern(RxResolverDefaults.DefaultBadCharsCollectionPattern1, string.Empty);
_rxResolver.AddPattern(@"[/\\]", " - ");
string output = _rxResolver.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

EmailCheckerResponse resp = await _rxResolver.IsValidEmailAsync("john.doe@gmail.com", checkDomain: true);
Console.WriteLine($"{resp.Message} - Status: {resp.ResponseStatus}");
// OUTPUT: john.doe@gmail.com results as a valid email address - Status: EMAIL_VALID

EmailCheckerResponse resp2 = _rxResolver.IsValidEmail("john.doe@gmail.com", checkDomain: true);
Console.WriteLine($"{resp2.Message} - Status: {resp2.ResponseStatus}");
// OUTPUT: john.doe@gmail.com results as a valid email address - Status: EMAIL_VALID

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

Email address existence check

EmailCheckerResponse resp = await _rxResolver.IsEmailExistingAsync("john.doe@gmail.com");
Console.WriteLine($"{resp.Message} - Status: {resp.ResponseStatus}");
// OUTPUT: john.doe@gmail.com exists - Status: EMAIL_VALID

EmailCheckerResponse resp2 = _rxResolver.IsEmailExisting("john.doe@gmail.com");
Console.WriteLine($"{resp2.Message} - Status: {resp2.ResponseStatus}");
// OUTPUT: john.doe@gmail.com exists - 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.

Added more controls and timeout period on DnsRequest queries; switched to a more thread safe regex patterns collection.