Validates the area code with regular expression : Match « Regular Expressions « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Regular Expressions » MatchScreenshots 
Validates the area code with regular expression
 

//Microsoft Public License (Ms-PL)
//http://c4fdevkit.codeplex.com/license

using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;

namespace C4F.DevKit.WebServices
{
    /// <summary>
    /// Provides useful methods like conversion methods.
    /// </summary>
    public static class Utility
    {

        /// <summary>
        /// Validates the area code
        /// </summary>
        /// <param name="areaCode">Area code to be validated. Area code should not start with a 0 or a 1.</param>
        /// <returns>True, if area code is valid</returns>
        public static bool ValidateAreaCode(string areaCode)
        {
            if (String.IsNullOrEmpty(areaCode))
                return false;

            return Regex.IsMatch(areaCode, "^[^01][0-9]{2}$");
        }
    }
}

   
  
Related examples in the same category
1.Regular expressions: MatchRegular expressions: Match
2.Use regualr expression to check if a string is a GUID
3.Count lines in a string with regular expression
4.Validates the phone number with regular expression
5.Validates the exchange code with regular expression
6.Validates the local 4 digit phone number with regular expression
7.Get Area Code by using Regular expression
8.Format Phone Number
9.Clean Telephone Number with Regular expression
10.Remove Nulls with Regex
11.Provides static validation methods for strings.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.