Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 984075
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T04:57:24+00:00 2026-05-16T04:57:24+00:00

I have to write a .NET Regular Expression which validates if a string is

  • 0

I have to write a .NET Regular Expression which validates if a string is alpha-numeric and has 4 or 8 characters (nothing less, nothing more). How can I do that? I tried with ([a-zA-Z0-9]{4})|([a-zA-Z0-9]{8}) but it doesn’t work.

  • 1 1 Answer
  • 4 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T04:57:25+00:00Added an answer on May 16, 2026 at 4:57 am

    You need to include start and end of line anchors otherwise it can match part of the string:

    ^([a-zA-Z0-9]{4}|[a-zA-Z0-9]{8})$
    

    Here’s a quick example of how to use this regular expression:

    Regex regex = new Regex("^([a-zA-Z0-9]{4}|[a-zA-Z0-9]{8})$");
    string[] tests = { "abcd", "0123", "01234567", "012345", "0123456789" };
    foreach (string test in tests)
    {
        Console.WriteLine("{0}: {1}", test.PadRight(10), regex.IsMatch(test));
    }
    

    Result:

    abcd      : True
    0123      : True
    01234567  : True
    012345    : False
    0123456789: False
    

    An alternative way to write the regular expression is as follows:

    ^(?:[a-zA-Z0-9]{4}){1,2}$
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to write a regular expression string match in vb.net. The condition
I have created firstly ASP.NET MVC 2 . and write more functionality. After I
I wanted to write a regular expression using the ASP.Net RegExp validator that would
I am trying to write a regular expression for ASP.NET MapPageRoute that matches a
i have a regular expression on ASP.net textbox control that validate for user input
I have an MVC project that I would like to write in .NET 4.0
How can you write a VB.NET Windows Forms Application via CodeDom? I have tried
How to write this in C#.NET, I have not been encountered using the ^
I have created blank Asp.Net-MVC 3 web application and want to write my own
Sometime in VB.net i have something like: For Each El in Collection Write(El) Next

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.