Info
Version: | 1.2.0 |
Author(s): | Kuba Szostak |
Last Update: | Tuesday, December 1, 2020 |
.NET Fiddle: | Create the first Fiddle |
Project Url: | https://github.com/kubaszostak/AsciiExtensions |
NuGet Url: | https://www.nuget.org/packages/AsciiExtensions |
Install
Install-Package AsciiExtensions
dotnet add package AsciiExtensions
paket add AsciiExtensions
AsciiExtensions Download (Unzip the "nupkg" after downloading)
Dependencies
- NETStandard.Library(>= 1.6.1)
Tags
ASCII extensions for .NET
## Instalation
Add *AsciiExtensions.cs* or *AsciiExtensions.dll* to your Visual Studio project.
Add *using System.Text.Ascii;* to your source file.
## Usage
```csharp
var a = "München ist eine “übergröße” Stadt".ToAscii();
// a : "Munchen ist eine "ubergrose" Stadt"
var b = "abc123".IsAlphaNumeric();
// b : true
var c = "123".IsNaturalNumber();
// c : true
var d = "docs.microsoft.com".IsValidDomain();
// d : true
var e = "[email protected]".IsValidEmail();
// d : true
```.