Click here to Skip to main content
15,885,146 members
Articles / Programming Languages / C#
Article

Regular Expression Validation Class

Rate me:
Please Sign up or sign in to vote.
3.86/5 (7 votes)
14 Jun 2006CPOL 44.1K   22   7
A class that allows easy validation of variables via Regular Expressions

Introduction

I often find myself re-writing the same bits of code for various projects. I know the whole point of object oriented design is to avoid this so I made myself this little Regex validation class. I find it useful for validating inputs and database values, etc. Hope you find it useful as well. Any pointers on how to extend it or better regular expressions will be gladly accepted.

The Code

C#
using System;
using System.Collections;
using System.Text.RegularExpressions;
namespace Company.Validation
{
    public enum ValidationTypes
    {
	PositiveDecimal,
	Decimal,
	PositiveNonDecimal,
	NonDecimal,
	DatesDDMMYYYY,
	DatesDDMMYY,
	DatesDD_MMM_YYYY,
	Email,
	IPAddress,
	URL
    }

    /// <summary>
    /// To Validate strings against Regular Expression strings.
    /// </summary>
    public class RegExValidate
    {
        static ArrayList RegexStrings;
        static RegExValidate()
        {
            RegexStrings = new ArrayList();
	   //PositiveNumber
	   RegexStrings.Insert( (int)ValidationTypes.PositiveDecimal, 
		@"^[0-9][0-9]*(\.[0-9]*)?$");
	   //Number
	   RegexStrings.Insert( (int)ValidationTypes.Decimal, 
	  	@"^(\+|-)?[0-9][0-9]*(\.[0-9]*)?$");
	   //PositiveNonDecimal
	   RegexStrings.Insert( (int)ValidationTypes.PositiveNonDecimal, 
		@"^[0-9][0-9]*$");
	   //NonDecimal
	   RegexStrings.Insert( (int)ValidationTypes.NonDecimal, 
	 	@"^(\+|-)?[0-9][0-9]*(\.[0-9]*)?$");
	   //Dates(DD/MM/YYYY)
	   RegexStrings.Insert( (int)ValidationTypes.DatesDDMMYYYY, 
		@"((0[1-9]|[12][0-9]|3[01]))[/|-](0[1-9]|1[0-2])
		[/|-]((?:\d{4}|\d{2}))");
	   //Dates(DD/MM/YY)
	   RegexStrings.Insert( (int)ValidationTypes.DatesDDMMYY, 
		@"((0[1-9]|[12][0-9]|3[01]))[/|-](0[1-9]|1[0-2])[/|-]((?:\d{2}))");
	   //Dates(DD MMM YYYY)
	   RegexStrings.Insert( (int)ValidationTypes.DatesDD_MMM_YYYY, 
	 	@"^((31(?!\ (Feb(ruary)?|Apr(il)?|June?|
		(Sep(?=\b|t)t?|Nov)(ember)?)))|
	 	((30|29)(?!\ Feb(ruary)?))|(29(?=\ 
		Feb(ruary)?\ (((1[6-9]|[2-9]\d)(0[48]|
		[2468][048]|[13579][26])|((16|[2468][048]|
		[3579][26])00)))))|(0?[1-9])|1\d|2[0-8])\ 
		(Jan(uary)?|Feb(ruary)?|Ma(r(ch)?|y)|Apr(il)?|
		Ju((ly?)|(ne?))|Aug(ust)?|
		Oct(ober)?|(Sep(?=\b|t)t?|Nov|Dec)(ember)?)\ 
		((1[6-9]|[2-9]\d)\d{2})");
	  //Email
	  RegexStrings.Insert( (int)ValidationTypes.Email, 
		@"([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|
		(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})");
	  //IPAddress
	  RegexStrings.Insert( (int)ValidationTypes.IPAddress, 
	 	@"(?<First>2[0-4]\d|25[0-5]|[01]?\d\d?)\.(?<Second>
		2[0-4]\d|25[0-5]|[01]?\d\d?)\.(?<Third>
		2[0-4]\d|25[0-5]|[01]?\d\d?)\.
		(?<Fourth>2[0-4]\d|25[0-5]|[01]?\d\d?)");
	  //URL
	  RegexStrings.Insert( (int)ValidationTypes.URL, 
		@"(?<protocol />\w+):\/\/(?<Domain>[\w.]+\/?)\S*");
        }
		
        /// <summary>
        /// Method returns true if unknown string matches the 
        /// regular expression defined by type
        /// </summary>
        /// <param name="type">ValidationTypes enum</param>
        /// <param name="unknown">String to validate</param>
        /// <returns>True if string validates</returns>
        public static bool Process(ValidationTypes type,string unknown)
        {
	   string test = RegexStrings[(int)type].ToString();
	   // Create a new Regex object.
	   Regex r = new Regex(RegexStrings[(int)type].ToString());
	   // Find a single match in the string.
	   Match m = r.Match(unknown);
	   return m.Success;
        }
    }
}

So it's used something like this.
You call the static method Process with the Validation Type you require and a string value of the object you are trying to validate.
This returns true if the string value is of that type and false if it's not.
For more stuff, see www.chemlock.co.uk.

History

  • 14th June, 2006: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United Kingdom United Kingdom
Have been working with computers since the early 80's when our junior school got a BBC Micro. Every since then I've been building, fixing, configuring, installing, networking, coding and designing with them. At present I mainly code web applications in C#/ASP.NET. I'm very interested in Design Patterns and try and use these generic principles in all new projects to create truly n-tier architectures. You can keep up on current affairs on www.steelcurve.com


Ok so the pictures not of me, it's my little girl who makes coding everyday worth while. I just hope she becomes a lawyer not a developer.

Comments and Discussions

 
GeneralMy vote of 5 Pin
sachin10d1-Nov-11 23:33
sachin10d1-Nov-11 23:33 
Bugerror Pin
ismailqadri2023-Jun-11 20:08
ismailqadri2023-Jun-11 20:08 
GeneralNot Running Properly Pin
Pankaj - Joshi6-Jun-07 17:40
Pankaj - Joshi6-Jun-07 17:40 
GeneralRegular Expression Class Pin
buyValu18-May-07 11:10
buyValu18-May-07 11:10 
GeneralSuggestion [modified] Pin
Steve Hansen15-Jun-06 6:37
Steve Hansen15-Jun-06 6:37 
GeneralRe: Suggestion Pin
Cheml0ck15-Jun-06 9:05
Cheml0ck15-Jun-06 9:05 
GeneralRange Validator Pin
correttore_automatico15-Jun-06 3:57
correttore_automatico15-Jun-06 3:57 
Yes regex are nice, but I found more useful the RangeValidator for integer and double numbers. The RangeValidator is also able to validate dates, but must have day month and year.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.