Quantcast
Channel: Rick Schott - _DOT_NET_STUFF and more... » C#
Viewing all articles
Browse latest Browse all 7

Regular Expression Helper Class

$
0
0
using System;
using System.Text.RegularExpressions;

namespace RickSchott.Util
{
    ///
    /// Summary description for RegExValidators.
    ///
    public class RegExValidators
    {
        public const string regPhoneNumber = @"^(?:([2-9]d{2}) ?|[2-9]d{2}(?:-?| ?))[2-9]d{2}[- ]?d{4}$";
        public const string regEmail = @"^[w-]+(?:.[w-]+)*@(?:[w-]+.)+[a-zA-Z]{2,7}$";
        public const string regZipCode = @"^(?(^00000(|-0000))|(d{5}(|-d{4})))$";
        public RegExValidators()
        {
            //
            // TODO: Add constructor logic here
            //
        }
        public static bool isValid(string input, string regConst)
        {
            return Regex.Match(input, regConst).Success;
        }
    }
}


Viewing all articles
Browse latest Browse all 7

Trending Articles