Pandatech.RegexBox
1.1.3
See the version list below for details.
dotnet add package Pandatech.RegexBox --version 1.1.3
NuGet\Install-Package Pandatech.RegexBox -Version 1.1.3
<PackageReference Include="Pandatech.RegexBox" Version="1.1.3" />
paket add Pandatech.RegexBox --version 1.1.3
#r "nuget: Pandatech.RegexBox, 1.1.3"
// Install Pandatech.RegexBox as a Cake Addin #addin nuget:?package=Pandatech.RegexBox&version=1.1.3 // Install Pandatech.RegexBox as a Cake Tool #tool nuget:?package=Pandatech.RegexBox&version=1.1.3
Pandatech.RegexBox
Introduction
Pandatech.RegexBox is a .NET library that provides a set of regular expressions for common data validation tasks. It includes regex patterns for validating email addresses, usernames, URLs, IP addresses (both IPv4 and IPv6), US Social Security Numbers, and Armenian Social Security Numbers.
Features
- Email Validation: You can use the
PandaValidator.IsEmail(string email)
method to check if a given string is a valid email address. - Username Validation: The library provides the
PandaValidator.IsUsername(string userName)
method to validate usernames according to a defined pattern. - URL Validation: You can validate URLs using the
PandaValidator.IsUri(string uri, bool allowWildcards, bool allowNonSecure)
method. It supports wildcards and secure/non-secure URLs. - IP Address Validation: The library offers methods to validate both IPv4 and IPv6 addresses using
PandaValidator.IsIpAddress(string ip, bool isIpv4)
. - US Social Security Number Validation: The
PandaValidator.IsUsSocialSecurityNumber(string number)
method allows you to check if a string matches the pattern for a US Social Security Number. - Armenian Social Security Number Validation: You can validate Armenian Social Security Numbers using
PandaValidator.IsArmenianSocialSecurityNumber(string socialCardNumber)
.
How to Use
Here's an example of how to use Pandatech.RegexBox for email validation:
using Pandatech.RegexBox;
string email = "example@email.com";
if (PandaValidator.IsEmail(email))
{
Console.WriteLine("Valid email address.");
}
else
{
Console.WriteLine("Invalid email address.");
}
Note
- The library is designed for easy integration into your .NET projects.
- The library has best performance and security practices in mind.
- This library has 100% code coverage.
- Will be ongoing updated and maintained.
License
PandaTech.RegexBox is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. |
-
net8.0
- No dependencies.
NuGet packages (2)
Showing the top 2 NuGet packages that depend on Pandatech.RegexBox:
Package | Downloads |
---|---|
Pandatech.Crypto
PandaTech.Crypto is a .NET library simplifying common cryptograhic functions. |
|
Pandatech.Communicator
A versatile .NET library for integrating SMS and email functionalities. Supports multiple SMS providers and easy configuration through appsettings.json or web builders, ideal for efficient and reliable messaging in any application.. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Structure change