Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 670 Bytes

README.md

File metadata and controls

14 lines (9 loc) · 670 Bytes

Build Status

A library for validating common inputs with Regular Expressions in .NET.

RegularValidator folder contains the library. Please add your methods here. RegularValidator.Tests consists of MSUnit Unit Tests. Please test your code beforehand.

Static regular expression methods are recommended as an alternative to repeatedly instantiating a regular expression object with the same regular expression.

How to use in your project:

  1. Include InputValidator.cs

Note: I use features introduced in C# 6, like using static directives.