HypeLab.RxPatternsResolver 0.0.6

There is a newer version of this package available.
See the version list below for details.
dotnet add package HypeLab.RxPatternsResolver --version 0.0.6
NuGet\Install-Package HypeLab.RxPatternsResolver -Version 0.0.6
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.0.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HypeLab.RxPatternsResolver --version 0.0.6
#r "nuget: HypeLab.RxPatternsResolver, 0.0.6"
#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.0.6

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

HypeLab.RxPatternsResolver

Provides a class capable of solve collections of regex patterns given an input string. Also equipped with a default patterns set.

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

(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;
	}
}
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 420 6/10/2022
0.1.1 388 6/10/2022
0.0.7 380 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

Moved and updated package metadata into project file. Added the ability to register the  instance of the class type (singleton) in IServiceCollection. README.md updated.